From f513f4c4d9e4e393febf45db7745568206eddca5 Mon Sep 17 00:00:00 2001 From: mewlist Date: Thu, 14 Mar 2024 21:32:49 +0900 Subject: [PATCH] Syntax highlighting on README_ja.md --- README_ja.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README_ja.md b/README_ja.md index 74f4d90..60be9c2 100644 --- a/README_ja.md +++ b/README_ja.md @@ -111,7 +111,7 @@ Doinject を使うと、Addressables のロード・解放を勝手にやって ### インストーラー -``` +```cs public class SomeInstaller : BindingInstallerScriptableObject { public override void Install(DIContainer container, IContextArg contextArg) @@ -123,7 +123,7 @@ public class SomeInstaller : BindingInstallerScriptableObject ### コンストラクタインジェクション -``` +```cs class ExampleClass { // Constructor Injection @@ -134,7 +134,7 @@ class ExampleClass ### メソッドインジェクション -``` +```cs class ExampleClass { // Method Injection @@ -146,7 +146,7 @@ class ExampleClass ### MonoBehaviour へのインジェクション -``` +```cs // Inherits IInjectableComponent class ExampleComponent : MonoBehaviour, IInjectableComponent {