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