openblocks/core/src/enum/part.h

14 lines
No EOL
192 B
C++

#pragma once
#include "datatypes/enum.h"
#include "enum/annotation.h"
enum class DEF_ENUM PartType {
Ball = 0,
Block = 1,
};
namespace EnumType {
extern const Enum PartType;
};