How should I load level data in java?
- by Matthew G.
I'm setting up my engine for a certain action/arcade game to have a set of commands that would look something like this.
Set landscape to grass
Create rocks at ...
Create player at X, Y
Set goal to "Get to point X Y"
Spawn enemy at X, Y
I'd then have each object knowing what it has to do, and acting on its own. I've been thinking about how to…