Start work moving entitymanager->scene
This commit is contained in:
parent
5574d9caed
commit
f0049c2cc6
@ -230,6 +230,7 @@ public class Globals {
|
|||||||
//
|
//
|
||||||
//keeps track of all entities in game
|
//keeps track of all entities in game
|
||||||
public static Scene entityManager;
|
public static Scene entityManager;
|
||||||
|
public static Scene clientScene;
|
||||||
|
|
||||||
//terrain manager
|
//terrain manager
|
||||||
// public static boolean LOAD_TERRAIN = true;
|
// public static boolean LOAD_TERRAIN = true;
|
||||||
|
|||||||
12
src/main/java/electrosphere/entity/ServerSceneManager.java
Normal file
12
src/main/java/electrosphere/entity/ServerSceneManager.java
Normal 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>();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@ -1,5 +0,0 @@
|
|||||||
package electrosphere.entity.scene;
|
|
||||||
|
|
||||||
public class Scene {
|
|
||||||
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue
Block a user