mirror of
https://github.com/minetest/minetestmapper.git
synced 2025-07-04 09:30:22 +02:00
Tabs -> spaces
This commit is contained in:
@ -31,7 +31,7 @@ struct Color {
|
||||
};
|
||||
|
||||
struct ColorEntry {
|
||||
ColorEntry(): r(0), g(0), b(0), a(0), t(0) {};
|
||||
ColorEntry(): r(0), g(0), b(0), a(0), t(0) {};
|
||||
ColorEntry(uint8_t r, uint8_t g, uint8_t b, uint8_t a, uint8_t t): r(r), g(g), b(b), a(a), t(t) {};
|
||||
inline Color to_color() const { return Color(r, g, b, a); }
|
||||
uint8_t r;
|
||||
|
Reference in New Issue
Block a user