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 thePointclass. * It includes additional functionality for handling movement and direction in a grid-based environment, making it ideal for maze or grid-based games.
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.-
ClassesClassDescriptionThe
Playerclass represents a player in a 2D space, extending thePointclass.