Esempio n. 1
0
 public virtual void Destroy()
 {
     //release references
     gameView = null;
 }
 public bool AddChild(GameView inChild)
 {
     inChild.SetParent(this.transform);
     return(Children.Contains(inChild));
 }
Esempio n. 3
0
 public GameComponent(GameView inGameView)
 {
     gameView = inGameView;
 }