mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-21 20:08:40 +03:00
15 lines
183 B
C++
15 lines
183 B
C++
#pragma once
|
|
#include <string>
|
|
enum class ClassPropertyType {
|
|
AABB,
|
|
Float,
|
|
String,
|
|
DropDown,
|
|
Color,
|
|
Int
|
|
};
|
|
|
|
struct ClassProperty {
|
|
std::string name;
|
|
ClassPropertyType type;
|
|
}; |