mirror of
https://github.com/seekrs/MacroLibX.git
synced 2026-01-11 14:43:34 +00:00
14 lines
138 B
C++
14 lines
138 B
C++
#ifndef __MLX_GRAPHICS_ENUMS__
|
|
#define __MLX_GRAPHICS_ENUMS__
|
|
|
|
namespace mlx
|
|
{
|
|
enum class DrawableType
|
|
{
|
|
Sprite,
|
|
Text
|
|
};
|
|
}
|
|
|
|
#endif
|