Implement entity spawning

This commit is contained in:
KingRainbow44
2023-05-12 23:50:28 -04:00
parent 10adc756d7
commit 1c91a776ed
8 changed files with 175 additions and 45 deletions

View File

@@ -35,4 +35,13 @@ public interface HandbookBody {
private String player; // Parse into online player ID.
private String scene; // Parse into a scene ID.
}
@Getter
class SpawnEntity {
private String player; // Parse into online player ID.
private String entity; // Parse into entity ID.
private int amount = 1; // Range between 1 - Long.MAX_VALUE.
private int level = 1; // Range between 1 - 200.
}
}