diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-22 17:05:00 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:59 +0200 |
commit | 7de921836587cdc359c2c4b84ed6446ada16c008 (patch) | |
tree | c4ec20b4769817c41ce7d939956da297bf787597 /src/commands/move_cursor.cpp | |
parent | 723ea6535b4c4e5605e5592137a898d6ffa458c1 (diff) |
refactor: remove window class
Diffstat (limited to 'src/commands/move_cursor.cpp')
-rw-r--r-- | src/commands/move_cursor.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/commands/move_cursor.cpp b/src/commands/move_cursor.cpp index 12a247d..6bd8eda 100644 --- a/src/commands/move_cursor.cpp +++ b/src/commands/move_cursor.cpp @@ -3,8 +3,8 @@ MoveCursorCommand::MoveCursorCommand( const Vector2 &direction, const std::shared_ptr<ICursorController> &cursor_controller, - const std::shared_ptr<IWindow> &window) noexcept - : _direction(direction), _cursor_controller(cursor_controller), _window(window) + const std::shared_ptr<IScene> &scene) noexcept + : _direction(direction), _cursor_controller(cursor_controller), _scene(scene) { } @@ -16,9 +16,9 @@ void MoveCursorCommand::execute() noexcept const auto new_position = _cursor_controller->where().to_direction(_direction, amount); - const auto window_size = _window->size(); + const auto scene_size = _scene->size(); - if (window_size.validate_coords(new_position) != CoordsValidation::VALID) + if (scene_size.validate_coords(new_position) != CoordsValidation::VALID) { return; } |