Exemplo n.º 1
0
 //Save into the database what the next unique item ID to be assigned will be
 public static void SaveNextID()
 {
     GlobalsDatabase.SaveNextItemID(NextItemID);
 }
Exemplo n.º 2
0
 //Load in from the database what the next unique item ID to be assigned will be
 public static void InitializeItemManager()
 {
     NextItemID = GlobalsDatabase.GetNextItemID();
 }