MiniEngine/SDLWrapper/ColorMode.cpp

15 lines
195 B
C++
Raw Normal View History

2017-06-18 20:37:45 +08:00
#include "ColorMode.h"
#include "begin_code.h"
ColorMode::ColorMode(int R, int G, int B)
{
r = R;
g = G;
b = B;
}
ColorMode::ColorMode()
{
r = g = b = 0;
}
#include "end_code.h"