DoSomethingComplex() public method

public DoSomethingComplex ( ) : void
return void
コード例 #1
0
        void Awake()
        {
            dependency.DoSomethingComplex();

            dependency2.DoSomethingAlsoComplex();
        }
コード例 #2
0
        void Start()
        {
            dependency.DoSomethingComplex();

            dependency2.DoSomethingAlsoComplex();
        }