You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
391 B
12 lines
391 B
#pragma once
|
|
#include "dinkyecs.hpp"
|
|
#include "map.hpp"
|
|
#include "components.hpp"
|
|
#include <ftxui/dom/canvas.hpp>
|
|
|
|
namespace System {
|
|
void motion(DinkyECS::World &world, Map &game_map);
|
|
void combat(DinkyECS::World &world, Player &player);
|
|
void draw_entities(DinkyECS::World &world, ftxui::Canvas &canvas);
|
|
void enemy_pathing(DinkyECS::World &world, Map &game_map, Player &player);
|
|
}
|
|
|