Implement spawning monsters by suite

This commit is contained in:
Melledy
2022-04-29 03:06:33 -07:00
parent ae3d9a4dc1
commit ffc1f801e6
4 changed files with 45 additions and 9 deletions

View File

@@ -26,4 +26,8 @@ public class SceneGroup {
public boolean setLoaded(boolean loaded) {
return loaded;
}
public SceneSuite getSuiteByIndex(int index) {
return suites.get(index - 1);
}
}