Exemple #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);
 }
Exemple #2
0
        public JsonFileLoader(JsonManager jsonManager, Logger logger = null)
        {
            this._logger = logger;

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

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