Просмотр исходного кода

test: shared custom_entity type

Michele Caini 2 лет назад
Родитель
Сommit
9b4c920d1f
1 измененных файлов с 12 добавлено и 0 удалено
  1. 12 0
      test/entt/common/custom_entity.h

+ 12 - 0
test/entt/common/custom_entity.h

@@ -0,0 +1,12 @@
+#ifndef ENTT_COMMON_CUSTOM_ENTITY_HPP
+#define ENTT_COMMON_CUSTOM_ENTITY_HPP
+
+#include <cstdint>
+
+namespace test {
+
+enum custom_entity : std::uint32_t {};
+
+} // namespace test
+
+#endif