diff options
Diffstat (limited to 'src/entities/maresciallo.c')
-rw-r--r-- | src/entities/maresciallo.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/entities/maresciallo.c b/src/entities/maresciallo.c new file mode 100644 index 0000000..568d056 --- /dev/null +++ b/src/entities/maresciallo.c @@ -0,0 +1,19 @@ +#include "maresciallo.h" +#include "assets.h" +#include "game.h" + +void initMaresciallo(Entity * entity, Game * game) { + entity->model = &game->assets.models[MARESCIALLO_ASSET]; + entity->velocity.angularVelocity = (AxisAngle){(Vector3){1.0, 1.0, 1.0}, 1.0}; +} + +void closeMaresciallo(Entity * entity) { +} + +void updateMaresciallo(Game * game, Entity * entity) { + entityUpdateRotation(entity); +} + +void drawMaresciallo(Game * game, Entity * entity) { + entityDraw(entity); +} |