Example #1
0
 public static GameLogManager getInstance()
 {
     if (gameLogManager == null){
         gameLogManager= new GameLogManager();
     }
     extensionManager= SFSExtensionManager.getInstance();
     return gameLogManager;
 }
Example #2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="GameMode"/> class.
        /// </summary>
        public GameMode(Device Device)
        {
            this.Device = Device;
            this.Time   = new Time();
            this.Level  = new Level(this);

            this.CommandManager = new CommandManager(this.Level);
            this.GameLogManager = new GameLogManager(this);
        }