Start work moving entitymanager->scene

This commit is contained in:
austin 2023-04-07 12:32:43 -04:00
parent 5574d9caed
commit f0049c2cc6
3 changed files with 13 additions and 5 deletions

View File

@ -230,6 +230,7 @@ public class Globals {
//
//keeps track of all entities in game
public static Scene entityManager;
public static Scene clientScene;
//terrain manager
// public static boolean LOAD_TERRAIN = true;

View File

@ -0,0 +1,12 @@
package electrosphere.entity;
import java.util.LinkedList;
import java.util.List;
public class ServerSceneManager {
List<Scene> scenes = new LinkedList<Scene>();
}

View File

@ -1,5 +0,0 @@
package electrosphere.entity.scene;
public class Scene {
}