aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces')
-rw-r--r--src/interfaces/cursor.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/interfaces/cursor.hpp b/src/interfaces/cursor.hpp
index 63aae41..377fe25 100644
--- a/src/interfaces/cursor.hpp
+++ b/src/interfaces/cursor.hpp
@@ -1,5 +1,6 @@
#pragma once
+#include "engine/data/bounds.hpp"
#include "engine/data/vector2.hpp"
#include <memory>
@@ -30,4 +31,6 @@ public:
virtual void hide() noexcept = 0;
virtual void show() noexcept = 0;
+
+ virtual void set_bounds(const Bounds &bounds) noexcept = 0;
};