Exemplo n.º 1
0
 public BaseStateManager(string name)
 {
     this.StateFilePath = ONI_Common.Paths.GetStateFilePath(name);
     this.Logger        = new ONI_Common.IO.Logger(name + "Log.txt");
     this.JsonLoader    = new JsonFileManager(new JsonManager(), Logger);
 }
Exemplo n.º 2
0
        public JsonFileLoader(JsonManager jsonManager, Logger logger = null)
        {
            this._logger = logger;

            this.InitializeManagers(jsonManager);
        }
Exemplo n.º 3
0
        public JsonFileManager(JsonManager jsonManager, Logger logger = null)
        {
            this._logger = logger;

            this._jsonManager = jsonManager;
        }
Exemplo n.º 4
0
 public TypeColorOffsetsManager(JsonManager manager, Logger logger = null)
     : base(manager, logger)
 {
 }