summaryrefslogtreecommitdiffstats
path: root/PositionI.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'PositionI.hpp')
-rw-r--r--PositionI.hpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/PositionI.hpp b/PositionI.hpp
new file mode 100644
index 0000000..45caabc
--- /dev/null
+++ b/PositionI.hpp
@@ -0,0 +1,39 @@
+#pragma once
+
+class PositionI {
+public:
+ PositionI(int x, int z, int y);
+
+ PositionI();
+
+ ~PositionI();
+
+ int GetX() const;
+
+ int GetY() const;
+
+ int GetZ() const;
+
+ void SetX(int x);
+
+ void SetY(int y);
+
+ void setZ(int z);
+
+ bool operator==(const PositionI &other) const;
+
+ PositionI &operator=(const PositionI &other);
+
+ PositionI(const PositionI &other);
+
+ bool operator<(const PositionI &rhs) const;
+
+ bool operator>(const PositionI &rhs) const;
+
+ bool operator<=(const PositionI &rhs) const;
+
+ bool operator>=(const PositionI &rhs) const;
+
+private:
+ int m_x, m_y, m_z;
+}; \ No newline at end of file