Color.h 116 B

12345678910
  1. #pragma once
  2. #ifndef COLOR_H_
  3. #define COLOR_H_
  4. struct RGBColor
  5. {
  6. unsigned char r, g, b;
  7. };
  8. #endif // COLOR_H_