예제 #1
0
파일: Saver.cs 프로젝트: zrisher/ARMS
 private static void Unload()
 {
     Instance = null;
 }
예제 #2
0
파일: Saver.cs 프로젝트: Souper07/Autopilot
 public Saver()
 {
     this.m_logger = new Logger(GetType().Name);
     Instance = this;
 }
예제 #3
0
파일: Saver.cs 프로젝트: zrisher/ARMS
 private static void OnLoad()
 {
     Instance = new Saver();
 }