MiniEngine/SDLWrapper/ColorMode.h

14 lines
192 B
C++
Raw Normal View History

2017-06-18 17:03:57 +08:00
#pragma once
#include "include.h"
2017-07-31 00:18:10 +08:00
namespace MiniEngine
{
2017-06-18 17:03:57 +08:00
class ColorMode
{
public:
int r, g, b;
ColorMode(int R, int G, int B);
ColorMode();
};
2017-07-31 00:18:10 +08:00
} /// End of namespace MiniEngine