diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-09 02:23:05 -0600 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-09 02:23:05 -0600 |
commit | 23be929353d4583edbd8621cd755f8a636c3fd90 (patch) | |
tree | 36d7502dbe628502eb7708c4617d1931420c8a66 /src/entities | |
parent | 708072e716e7ab22a37f528311a433f195f75054 (diff) |
soldato asset added
Diffstat (limited to 'src/entities')
-rw-r--r-- | src/entities/soldato.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entities/soldato.c b/src/entities/soldato.c index 4abe5af..da8df84 100644 --- a/src/entities/soldato.c +++ b/src/entities/soldato.c @@ -2,7 +2,7 @@ #include "game.h" void initSoldato(Entity * entity, Game * game) { - entity->model = &game->assets.models[ANTIFA_SHIP_ASSET]; + entity->model = &game->assets.models[SOLDATO_ASSET]; entity->velocity.angularVelocity = (AxisAngle){(Vector3){1.0, 1.0, 1.0}, 1.0}; } |