Package net.regsirius06.engine.point.entities


package net.regsirius06.engine.point.entities
This package contains classes representing entities within a 2D space. Currently, it includes:
  • Player - represents a player in a 2D space, extending the Point class. * It includes additional functionality for handling movement and direction in a grid-based environment, making it ideal for maze or grid-based games.
The Player class allows the player to move in a specified direction and adjust their facing angle, which is useful in pathfinding and maze-solving scenarios. The player is represented by a position in 2D space and a direction, enabling smooth navigation and interactions within the environment.
  • Classes
    Class
    Description
    The Player class represents a player in a 2D space, extending the Point class.