Beispiel #1
0
 /// <summary>
 /// Initialises Oxide
 /// </summary>
 public static void Initialise()
 {
     // Create if not already created
     if (oxide == null)
     {
         oxide = new OxideMod();
         oxide.Load();
     }
 }
Beispiel #2
0
 /// <summary>
 /// Initializes Oxide
 /// </summary>
 public static void Initialize()
 {
     // Create if not already created
     if (Oxide == null)
     {
         Oxide = new OxideMod(DebugCallback);
         Oxide.Load();
     }
 }