예제 #1
0
 private GameObjectContainer(GameObjectContainer backgroundObjects)
     : base()
 {
     this.backgroundObjects = backgroundObjects;
     safeAddQue             = new List <GameObject>();
     safeRemoveQue          = new List <GameObject>();
 }
예제 #2
0
        public GameObjectContainer()
            : base()
        {
            backgroundObjects = new GameObjectContainer(null);

            safeAddQue    = new List <GameObject>();
            safeRemoveQue = new List <GameObject>();
        }