Example #1
0
 public bool addGameObject(GameObject o)
 {
     if (gameObjects != null) {
         gameObjects.Add(o);
         return true;
     }
     return false;
 }
Example #2
0
 public void addGameObject(GameObject o)
 {
     GameObjects.Add(o);
 }
Example #3
0
 public static bool DoRemoveGameObject(GameObject o)
 {
     return o.SlatedToRemove;
 }