18 lines
731 B
C
18 lines
731 B
C
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#include "entity/component/display/entityposition.h"
|
|
#include "entity/component/display/entitycamera.h"
|
|
#include "entity/component/display/entitymesh.h"
|
|
#include "entity/component/display/entitymaterial.h"
|
|
#include "entity/component/physics/entityphysics.h"
|
|
|
|
X(POSITION, entityposition_t, position, entityPositionInit, NULL)
|
|
X(CAMERA, entitycamera_t, camera, entityCameraInit, NULL)
|
|
X(MESH, entitymesh_t, mesh, entityMeshInit, entityMeshDispose)
|
|
X(MATERIAL, entitymaterial_t, material, entityMaterialInit, NULL)
|
|
X(PHYSICS, entityphysics_t, physics, entityPhysicsInit, entityPhysicsDispose) |