mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-25 17:53:47 +00:00
7 lines
174 B
C
7 lines
174 B
C
|
#ifndef BBGE_ENGINE_ENUMS_H
|
||
|
#define BBGE_ENGINE_ENUMS_H
|
||
|
|
||
|
enum BlendType { BLEND_DISABLED = -1, BLEND_DEFAULT = 0, BLEND_ADD, BLEND_SUB, BLEND_MULT, _BLEND_MAXSIZE };
|
||
|
|
||
|
#endif
|