Awake() public method

public Awake ( ) : void
return void
コード例 #1
0
ファイル: Program.cs プロジェクト: kctool/ExPluginBase
        static void Main(string[] args)
        {
            File.Delete("TestPlugin.ini");
            var t = new TestPlugin();

            t.Awake();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: asm256/ExPluginBase
 static void Main(string[] args)
 {
     var t = new TestPlugin();
       t.Awake();
 }
コード例 #3
0
        static void Main(string[] args)
        {
            var t = new TestPlugin();

            t.Awake();
        }