Renamed class to not conflict with the java.lang version.

This commit is contained in:
2024-04-05 07:59:44 -04:00
parent dd84615ca1
commit c1ee6f5b52
388 changed files with 1807 additions and 1779 deletions
+3 -3
View File
@@ -1,12 +1,12 @@
package engine.objects;
import engine.Enum;
import engine.Enum.PortalType;
import engine.InterestManagement.WorldGrid;
import engine.gameManager.ConfigManager;
import engine.job.JobScheduler;
import engine.jobs.CloseGateJob;
import engine.math.Vector3fImmutable;
import engine.mbEnums;
import engine.mbEnums.PortalType;
import engine.server.MBServerStatics;
import java.util.HashSet;
@@ -19,7 +19,7 @@ import java.util.HashSet;
public class Portal {
public final Vector3fImmutable portalLocation;
public Enum.PortalType portalType;
public mbEnums.PortalType portalType;
public Building sourceGate;
public Building targetGate;
private boolean active;