Esempio n. 1
0
		void Awake()
		{
			//Instantiate the context, passing it this instance and a 'true' for autoStartup.
			context = new GameContext(this, true);
			context.Start ();
		}
Esempio n. 2
0
		void Awake()
		{
			//Instantiate the context, passing it this instance.
			context = new GameContext(this);
		}
Esempio n. 3
0
 void Awake()
 {
     //Instantiate the context, passing it this instance and a 'true' for autoStartup.
     context = new GameContext(this, true);
     context.Start();
 }