Files
entt/test/lib/component.h
2019-02-23 23:47:38 +01:00

12 lines
153 B
C

#include <entt/core/type_traits.hpp>
ENTT_SHARED_STRUCT(position, {
int x;
int y;
})
ENTT_SHARED_STRUCT(velocity, {
int dx;
int dy;
})