Quellcode durchsuchen

[2.0.5.2] cleanup of imports

Zariteis vor 4 Jahren
Ursprung
Commit
d14147139f

+ 0 - 4
Infos/GalacticDarkfireItemInfo.cs

@@ -1,10 +1,6 @@
 using GadgetCore.API;
-using System;
 using System.Collections;
-using System.Collections.Generic;
-using System.Linq;
 using System.Reflection;
-using System.Text;
 using UnityEngine;
 
 namespace UltimateNPCWeapons.Infos

+ 0 - 4
Infos/GalacticRagnarokItemInfo.cs

@@ -1,10 +1,6 @@
 using GadgetCore.API;
-using System;
 using System.Collections;
-using System.Collections.Generic;
-using System.Linq;
 using System.Reflection;
-using System.Text;
 using UnityEngine;
 
 namespace UltimateNPCWeapons.Infos

+ 0 - 4
Infos/GalacticSilenceItemInfo.cs

@@ -1,10 +1,6 @@
 using GadgetCore.API;
-using System;
 using System.Collections;
-using System.Collections.Generic;
-using System.Linq;
 using System.Reflection;
-using System.Text;
 using UnityEngine;
 
 namespace UltimateNPCWeapons.Infos

+ 0 - 5
Infos/PercevalsDisciplineItemInfo.cs

@@ -1,11 +1,6 @@
 using GadgetCore.API;
-using System;
 using System.Collections;
-using System.Collections.Generic;
-using System.Linq;
 using System.Reflection;
-using System.Text;
-using UltimateNPCWeapons.Scripts;
 using UnityEngine;
 
 namespace UltimateNPCWeapons.Infos

+ 0 - 5
Infos/PercevalsPactItemInfo.cs

@@ -1,11 +1,6 @@
 using GadgetCore.API;
-using System;
 using System.Collections;
-using System.Collections.Generic;
-using System.Linq;
 using System.Reflection;
-using System.Text;
-using UltimateNPCWeapons.Scripts;
 using UnityEngine;
 
 namespace UltimateNPCWeapons.Infos

+ 0 - 5
Infos/PercevalsVolleyItemInfo.cs

@@ -1,11 +1,6 @@
 using GadgetCore.API;
-using System;
 using System.Collections;
-using System.Collections.Generic;
-using System.Linq;
 using System.Reflection;
-using System.Text;
-using UltimateNPCWeapons.Scripts;
 using UnityEngine;
 
 namespace UltimateNPCWeapons.Infos

+ 0 - 4
Infos/RingaboltsFuryItemInfo.cs

@@ -1,10 +1,6 @@
 using GadgetCore.API;
-using System;
 using System.Collections;
-using System.Collections.Generic;
-using System.Linq;
 using System.Reflection;
-using System.Text;
 using UnityEngine;
 
 namespace UltimateNPCWeapons.Infos

+ 0 - 4
Infos/RingaboltsOathItemInfo.cs

@@ -1,10 +1,6 @@
 using GadgetCore.API;
-using System;
 using System.Collections;
-using System.Collections.Generic;
-using System.Linq;
 using System.Reflection;
-using System.Text;
 using UltimateNPCWeapons.Scripts;
 using UnityEngine;
 

+ 0 - 4
Infos/RingaboltsVengeanceItemInfo.cs

@@ -1,10 +1,6 @@
 using GadgetCore.API;
-using System;
 using System.Collections;
-using System.Collections.Generic;
-using System.Linq;
 using System.Reflection;
-using System.Text;
 using UnityEngine;
 
 namespace UltimateNPCWeapons.Infos

+ 0 - 4
Infos/WallacesBirthrightItemInfo.cs

@@ -1,10 +1,6 @@
 using GadgetCore.API;
-using System;
 using System.Collections;
-using System.Collections.Generic;
-using System.Linq;
 using System.Reflection;
-using System.Text;
 using UltimateNPCWeapons.Scripts;
 using UnityEngine;
 

+ 0 - 4
Infos/WallacesEnduranceItemInfo.cs

@@ -1,10 +1,6 @@
 using GadgetCore.API;
-using System;
 using System.Collections;
-using System.Collections.Generic;
-using System.Linq;
 using System.Reflection;
-using System.Text;
 using UnityEngine;
 
 namespace UltimateNPCWeapons.Infos

+ 0 - 5
Infos/WallacesFealtyItemInfo.cs

@@ -1,11 +1,6 @@
 using GadgetCore.API;
-using System;
 using System.Collections;
-using System.Collections.Generic;
-using System.Linq;
 using System.Reflection;
-using System.Text;
-using UltimateNPCWeapons.Scripts;
 using UnityEngine;
 
 namespace UltimateNPCWeapons.Infos

+ 1 - 3
Scripts/RingaboltsOathProjectile.cs

@@ -1,6 +1,4 @@
-
-using System;
-using System.Collections;
+using System.Collections;
 using UnityEngine;
 
 

+ 1 - 3
Scripts/WallacesBirthrightProjectile.cs

@@ -1,6 +1,4 @@
-
-using System;
-using System.Collections;
+using System.Collections;
 using UnityEngine;
 
 

+ 1 - 7
UltimateNPCWeapons.cs

@@ -1,8 +1,8 @@
-using UltimateNPCWeapons.Infos;
 using GadgetCore.API;
 using GadgetCore.API.ConfigMenu;
 using GadgetCore.Util;
 using RecipeMenuCore.API;
+using UltimateNPCWeapons.Infos;
 using UnityEngine;
 
 namespace UltimateNPCWeapons
@@ -13,12 +13,6 @@ namespace UltimateNPCWeapons
     public const string MOD_VERSION = "1.0"; // Set this to the version of your mod.
     public const string CONFIG_VERSION = "1.0"; // Increment this whenever you change your mod's config file.
 
-    public static int objectCrystalOreID;
-    public static int objectCrystalWormWeakID;
-    public static int objecWormOreID;
-
-    public static bool objectWormOrePlaced;
-
     // Disable the config menu
     public override IGadgetConfigMenu GetConfigMenu() { return null; }