diff options
Diffstat (limited to 'editor/character.hpp')
-rw-r--r-- | editor/character.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/editor/character.hpp b/editor/character.hpp index b201be8f..86f634c5 100644 --- a/editor/character.hpp +++ b/editor/character.hpp @@ -12,14 +12,13 @@ struct character_wip final { character_wip(); ~character_wip(); - void tick(world& w, float dt, int left_right, int top_bottom); + void tick(world& w, float dt, bool L, bool R, bool U, bool D); std::shared_ptr<anim_atlas> walk_anim; global_coords pos; std::size_t frame = 0; float delta = 0; Vector2 offset; - Vector2ub bbox_size; rotation r = rotation::NE; private: |