mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-04-30 16:57:57 +03:00
Make color getters const.
This commit is contained in:
parent
9b31649ada
commit
3060fb85c0
2 changed files with 8 additions and 8 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue