Exemplo n.º 1
0
        public static void Init()
        {
            GhostItemManager <stGhostItem> .Instance().LoadFile("ghostspawn", "Table/");

            GhostPowerTableManager.Instance().LoadFile("GhostPowerRate", "Table/");
            AchievementTableManager.Instance().LoadFile("achievement", "Table/");
        }
Exemplo n.º 2
0
        public static void ClearUp()
        {
            GhostItemManager <stGhostItem> .Instance().ClearUp();

            GhostPowerTableManager.Instance().ClearUp();
            AchievementTableManager.Instance().ClearUp();
        }
Exemplo n.º 3
0
 public static GhostPowerTableManager Instance()
 {
     if (s_instance == null)
     {
         s_instance = new GhostPowerTableManager();
     }
     return(s_instance);
 }
Exemplo n.º 4
0
 public void ClearUp()
 {
     s_instance = null;
 }