mirror of
https://github.com/Kiritow/MiniEngine.git
synced 2024-03-22 13:11:22 +08:00
12 lines
179 B
C
12 lines
179 B
C
|
#pragma once
|
||
|
#include "include.h"
|
||
|
#include "begin_code.h"
|
||
|
class ColorMode
|
||
|
{
|
||
|
public:
|
||
|
int r, g, b;
|
||
|
ColorMode(int R, int G, int B);
|
||
|
ColorMode();
|
||
|
};
|
||
|
#include "end_code.h"
|