diff options
Diffstat (limited to 'ZAPDUtils/Color3b.h')
| -rw-r--r-- | ZAPDUtils/Color3b.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/ZAPDUtils/Color3b.h b/ZAPDUtils/Color3b.h deleted file mode 100644 index 507c099..0000000 --- a/ZAPDUtils/Color3b.h +++ /dev/null @@ -1,21 +0,0 @@ -#pragma once - -#include <cstdint> - -struct Color3b -{ - uint8_t r, g, b; - - Color3b() - { - r = 0; - g = 0; - b = 0; - }; - Color3b(uint8_t nR, uint8_t nG, uint8_t nB) - { - r = nR; - g = nG; - b = nB; - }; -};
\ No newline at end of file |
