GoGoGo() public method

public GoGoGo ( ) : void
return void
コード例 #1
0
ファイル: Game.cs プロジェクト: RogerCase/TPSFinal
    void Start()
    {
        m_Example1Manager = new Example1Manager();


        // activate example 1
        m_Example1Manager.GoGoGo();

        ;
    }
コード例 #2
0
ファイル: Game.cs プロジェクト: ylyking/unity-multi-threading
    void Start()
    {
        m_Example1Manager = new Example1Manager();
        m_Example2Manager = new Example2Manager();

        // activate example 1
        m_Example1Manager.GoGoGo();

        // activate example 2
        //m_Example2Manager.GoGoGo();
    }