diff --git a/src/locale/language.h b/src/locale/language.h index a88a64d8..33b76782 100644 --- a/src/locale/language.h +++ b/src/locale/language.h @@ -6,7 +6,7 @@ */ #pragma once -#include +#include "../libs.h" #include "../util/string.h" #include "../file/asset.h" #include "../file/csv.h" diff --git a/src/physics/aabb.h b/src/physics/aabb.h index d8232d69..0c5d8d71 100644 --- a/src/physics/aabb.h +++ b/src/physics/aabb.h @@ -6,7 +6,7 @@ */ #pragma once -#include +#include "../libs.h" #include "sphere.h" #include "../input/input.h" diff --git a/src/physics/sphere.h b/src/physics/sphere.h index d741d595..c469c0c2 100644 --- a/src/physics/sphere.h +++ b/src/physics/sphere.h @@ -6,7 +6,7 @@ */ #pragma once -#include +#include "../libs.h" #include "vector.h" /** diff --git a/src/physics/vector.h b/src/physics/vector.h index d0d28bdc..161d6cb2 100644 --- a/src/physics/vector.h +++ b/src/physics/vector.h @@ -6,7 +6,7 @@ */ #pragma once -#include +#include "../libs.h" /** * Calculate the distance between two points in 2D space. diff --git a/src/poker/actions/blinds.h b/src/poker/actions/blinds.h index 86d7033b..bea08f52 100644 --- a/src/poker/actions/blinds.h +++ b/src/poker/actions/blinds.h @@ -6,7 +6,7 @@ */ #pragma once -#include +#include "../../libs.h" #include "../../display/animation/queue.h" #include "../bet.h" diff --git a/src/poker/actions/deal.h b/src/poker/actions/deal.h index 80c82bf1..a8ad54ac 100644 --- a/src/poker/actions/deal.h +++ b/src/poker/actions/deal.h @@ -6,7 +6,7 @@ */ #pragma once -#include +#include "../../libs.h" #include "../../display/animation/queue.h" #include "../dealer.h" diff --git a/src/poker/actions/flop.h b/src/poker/actions/flop.h index 2744429a..5def9884 100644 --- a/src/poker/actions/flop.h +++ b/src/poker/actions/flop.h @@ -6,7 +6,7 @@ */ #pragma once -#include +#include "../../libs.h" #include "../../display/animation/queue.h" #include "../dealer.h" diff --git a/src/poker/actions/match.h b/src/poker/actions/match.h index 136a2229..cc3026ca 100644 --- a/src/poker/actions/match.h +++ b/src/poker/actions/match.h @@ -4,7 +4,7 @@ // https://opensource.org/licenses/MIT #pragma once -#include +#include "../../libs.h" #include "../../display/animation/queue.h" #include "../bet.h"