Basic combat system prototype works, but needs more GUI love to really work in the game.

This commit is contained in:
Zed A. Shaw 2025-02-14 10:18:45 -05:00
parent bfd2718cc9
commit f8dd5d816f
3 changed files with 35 additions and 0 deletions

View file

@ -18,4 +18,6 @@ namespace System {
void device(DinkyECS::World &world, DinkyECS::Entity actor, DinkyECS::Entity item);
void plan_motion(DinkyECS::World& world, Point move_to);
void draw_entities(DinkyECS::World &world, Map &map, const Matrix &lights, ftxui::Canvas &canvas, const Point &cam_orig, size_t view_x, size_t view_y);
void combat(GameLevel &level);
}