Basic functionality of RadialService implemented. All radial logic moved out of SuiService.

This commit is contained in:
Obique PSWG
2015-08-04 01:39:43 -05:00
parent be5fd47373
commit f97ea32e5d
6 changed files with 202 additions and 23 deletions
+3
View File
@@ -71,6 +71,7 @@ public class ObjectManager extends Manager {
private final MapService mapService;
private final StaticService staticService;
private final RadialService radialService;
private final ObjectDatabase<SWGObject> database;
private final ObjectAwareness objectAwareness;
@@ -80,6 +81,7 @@ public class ObjectManager extends Manager {
public ObjectManager() {
mapService = new MapService();
staticService = new StaticService(this);
radialService = new RadialService();
database = new CachedObjectDatabase<SWGObject>("odb/objects.db");
objectAwareness = new ObjectAwareness();
objectMap = new HashMap<>();
@@ -87,6 +89,7 @@ public class ObjectManager extends Manager {
addChildService(mapService);
addChildService(staticService);
addChildService(radialService);
}
@Override