Example #1
0
        public static void Add(Interface.Struct.GameObject obj)
        {
            GameObject nobj = new GameObject(obj);

            Out.Log(Significance.Low, "Added game object " + nobj);
            AllGameObjects.Add(nobj);
        }
Example #2
0
 public GameObject(Interface.Struct.GameObject other)
 {
     BirthRound = other.birthRound;
     ID         = new ObjectID(other.id);
     Height     = other.height;
     IsBroad    = other.isBroad;
     IsMine     = other.isMine;
     ClassName  = other.className;
 }