Make color getters const.

This commit is contained in:
hispidence 2021-07-24 12:26:48 +01:00
parent 9b31649ada
commit 3060fb85c0
2 changed files with 8 additions and 8 deletions

View file

@ -22,13 +22,13 @@ public:
operator Vector3() const;
operator Vector4() const;
byte GetR();
byte GetR() const;
void SetR(byte v);
byte GetG();
byte GetG() const;
void SetG(byte v);
byte GetB();
byte GetB() const;
void SetB(byte v);
byte GetA();
byte GetA() const;
void SetA(byte v);
std::string ToString() const;