/**
* @param width is the width of the world.
* @param height is the height of the world.
*/
public WorldModel(double width, double height) {
super(width, height, new SimulationTimeManager(500));
getMap();
actionApplier = new ActionApplier(this);
physicsEngine = new PhysicsEngine(mapElements);