15 lines
No EOL
210 B
C++
15 lines
No EOL
210 B
C++
#pragma once
|
|
|
|
#include "datatypes/enum.h"
|
|
#include "enum/annotation.h"
|
|
|
|
|
|
enum class DEF_ENUM PartType {
|
|
Ball = 0,
|
|
Block = 1,
|
|
Cylinder = 2,
|
|
};
|
|
|
|
namespace EnumType {
|
|
extern const Enum PartType;
|
|
}; |