Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/game/interfaces/StarPointableItem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/game/interfaces/StarPointableItem.cpp')
-rw-r--r--source/game/interfaces/StarPointableItem.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/source/game/interfaces/StarPointableItem.cpp b/source/game/interfaces/StarPointableItem.cpp
new file mode 100644
index 0000000..b12ef3c
--- /dev/null
+++ b/source/game/interfaces/StarPointableItem.cpp
@@ -0,0 +1,13 @@
+#include "StarPointableItem.hpp"
+
+namespace Star {
+
+float PointableItem::getAngleDir(float angle, Direction) {
+ return getAngle(angle);
+}
+
+float PointableItem::getAngle(float angle) {
+ return angle;
+}
+
+}