コード例 #1
0
ファイル: GameObject.cs プロジェクト: sidit77/IslandGame
 public GameObject Remove(GameComponent gc)
 {
     components.Remove(gc);
     return(this);
 }
コード例 #2
0
ファイル: GameObject.cs プロジェクト: sidit77/IslandGame
 public GameObject Add(GameComponent gc)
 {
     components.Add(gc);
     return(this);
 }