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