This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
game-project/source/world/world_object.d

12 lines
193 B
D
Raw Normal View History

2023-10-02 13:03:07 +00:00
module world.world_object;
import utils.shapes;
class WorldObject {
public Vec2f position;
public Rectf hitbox;
void update(float deltaTime);
void render(float deltaTime);
}