Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
goblinhack committed May 11, 2024
1 parent 9f11625 commit 1e7aca1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/my_level.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,19 +159,19 @@ Id level_get_id_no_check(Levelp, int x, int y, uint8_t z);
Levelp level_constructor(void);
Thingp level_thing_find(Levelp, ThingId id);
Thingp level_thing_find_optional(Levelp, ThingId id);
Thingp level_thing_or_tp_get(Levelp, int x, int y, uint8_t slot, Tpp * = nullptr);
Thingp level_thing_init(Levelp, Tpp, int x, int y);
Thingp level_thing_new(Levelp, Tpp, int x, int y);
Thingp level_thing_or_tp_get(Levelp, int x, int y, uint8_t slot, Tpp * = nullptr);
Thingp level_thing_player(Levelp);
Tilep level_get_tile(Levelp, int x, int y, uint8_t z);
Tilep level_get_tile_no_check(Levelp, int x, int y, uint8_t z);
Tpp level_thing_tp(Levelp, Thingp);
void level_anim(Levelp);
void level_assign_tiles(Levelp);
void level_bounds_set(Levelp);
void level_cursor_reset(Levelp);
void level_destructor(Levelp);
void level_display(Levelp);
void level_display(Levelp);
void level_dungeon_create_and_place(Levelp);
void level_map_set(Levelp, const char *);
void level_scroll_delta(Levelp, int, int);
Expand All @@ -191,7 +191,6 @@ void level_thing_pop(Levelp, Thingp);
void level_thing_push(Levelp, Thingp);
void level_thing_update(Levelp, Thingp);
void level_tick_begin(Levelp);
void level_cursor_reset(Levelp);
void level_tick_begin_requested(Levelp, const char *);
void level_tick_body(Levelp, float dt);
void level_tick_end_requested(Levelp);
Expand Down

0 comments on commit 1e7aca1

Please sign in to comment.