mirror of
https://github.com/edo9300/edopro
synced 2026-08-23 22:26:05 -04:00
20 lines
374 B
C++
20 lines
374 B
C++
#include "custom_skin_enum.h"
|
|
|
|
namespace ygo {
|
|
namespace skin {
|
|
|
|
#define CLR(val1,val2,val3,val4) irr::video::SColor(val1,val2,val3,val4)
|
|
|
|
#define DECLR(what,val) irr::video::SColor what##_VAL = val;
|
|
#include "custom_skin_enum.inl"
|
|
#undef DECLR
|
|
#define DECLR(what,val) what##_VAL = val;
|
|
void ResetDefaults() {
|
|
#include "custom_skin_enum.inl"
|
|
}
|
|
#undef DECLR
|
|
#undef CLR
|
|
|
|
}
|
|
|
|
}
|