From b6cf690c2509d936f6daacf89a7502f8271e1158 Mon Sep 17 00:00:00 2001 From: Vladyslav Hrytsenko Date: Thu, 29 Sep 2022 17:33:36 +0300 Subject: [PATCH] code: commited fixes to compilation --- code/foundation/src/models/prefabs/furnace.c | 1 + code/foundation/src/models/prefabs/player.c | 1 + code/foundation/src/models/prefabs/storage.c | 1 + code/foundation/src/models/prefabs/vehicle.c | 1 + 4 files changed, 4 insertions(+) diff --git a/code/foundation/src/models/prefabs/furnace.c b/code/foundation/src/models/prefabs/furnace.c index fb5ccc3..126bd88 100644 --- a/code/foundation/src/models/prefabs/furnace.c +++ b/code/foundation/src/models/prefabs/furnace.c @@ -2,6 +2,7 @@ #include "models/device.h" #include "world/world.h" +#include "models/entity.h" #include "models/components.h" uint64_t furnace_spawn(void) { diff --git a/code/foundation/src/models/prefabs/player.c b/code/foundation/src/models/prefabs/player.c index 1211cca..c466752 100644 --- a/code/foundation/src/models/prefabs/player.c +++ b/code/foundation/src/models/prefabs/player.c @@ -3,6 +3,7 @@ #include "world/world.h" +#include "models/entity.h" #include "models/components.h" #define PLAYER_MAX_HP 100.0f diff --git a/code/foundation/src/models/prefabs/storage.c b/code/foundation/src/models/prefabs/storage.c index 8a4071d..a220bba 100644 --- a/code/foundation/src/models/prefabs/storage.c +++ b/code/foundation/src/models/prefabs/storage.c @@ -2,6 +2,7 @@ #include "models/device.h" #include "world/world.h" +#include "models/entity.h" #include "models/components.h" uint64_t storage_spawn(void) { diff --git a/code/foundation/src/models/prefabs/vehicle.c b/code/foundation/src/models/prefabs/vehicle.c index 465e5fe..03ec0e8 100644 --- a/code/foundation/src/models/prefabs/vehicle.c +++ b/code/foundation/src/models/prefabs/vehicle.c @@ -3,6 +3,7 @@ #include "world/entity_view.h" #include "world/world.h" +#include "models/entity.h" #include "models/components.h" uint64_t vehicle_spawn(void) {