mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
15 lines
195 B
C++
15 lines
195 B
C++
#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"
|