summaryrefslogtreecommitdiffstats
path: root/PositionI.hpp
blob: 45caabc540b12300b0db519a9deb13c6fed91b56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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;
};