diff options
Diffstat (limited to 'main/editor.cpp')
-rw-r--r-- | main/editor.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/main/editor.cpp b/main/editor.cpp index e95bc6e3..04578adb 100644 --- a/main/editor.cpp +++ b/main/editor.cpp @@ -126,14 +126,11 @@ editor::editor() { } -void editor::click_at_tile(Vector2 pos, int mouse_button) +void editor::click_at_tile(const global_coords pos, int mouse_button) { if (mouse_button == 0) { - if (pos[0] >= 0 && pos[1] >= 0 && pos[0] < TILE_MAX_DIM && pos[1] < TILE_MAX_DIM) - { - - } + // TODO } } |