コード例 #1
0
ファイル: GameState.cs プロジェクト: amulware/the-game
 public void Add(GameObject gameObject)
 {
     this.gameObjects.Add(gameObject);
 }
コード例 #2
0
ファイル: GameObject.cs プロジェクト: Hopea/SpaceShooter
 public bool isCollission(GameObject gameObject)
 {
     return boundingSphere.Intersects(gameObject.boundingSphere);
 }