Files
Aeon/Aeon/Entity/CoreComponents/SimpleComponents.hpp
2025-06-27 23:11:37 +01:00

20 lines
238 B
C++

#ifndef AEON_ENTITY_CORECOMPONENTS_SIMPLECOMPONENTS_H_
#define AEON_ENTITY_CORECOMPONENTS_SIMPLECOMPONENTS_H_
namespace EC
{
struct Position
{
float x, y, z;
};
struct Velocity
{
float dx, dy, dz;
};
} // namespace EC
#endif