MiniEngine/SDLWrapper/ColorMode.cpp

17 lines
208 B
C++
Raw Normal View History

2017-06-18 20:37:45 +08:00
#include "ColorMode.h"
2017-07-31 00:18:10 +08:00
namespace MiniEngine
{
2017-06-18 20:37:45 +08:00
ColorMode::ColorMode(int R, int G, int B)
{
r = R;
g = G;
b = B;
}
ColorMode::ColorMode()
{
r = g = b = 0;
}
2017-07-31 00:18:10 +08:00
} /// End of namespace MiniEngine