public class Wall extends PlaceableEntity
Core wall class. Wall inherits entity and adds the required components and functionality for a functional wall within the game. All walls have a static body and a WALL ColliderComponent. Walls' take up 1 tile on the map and have custom health and textures (as defined in configs/walls.json).

Example use:

 WallConfig config = new WallConfig();s
 Entity wall = new Wall(config);
 
  • Constructor Details

    • Wall

      public Wall(WallType type, Entity player)
      Constructor to create a Wall entity based on the given config.

      Predefined wall properties are loaded from a config stored as a json file and should have the properties stored in 'WallConfig'.

  • Method Details