From 68e61a5bc5d46ae1ca10914a6953b003c374e520 Mon Sep 17 00:00:00 2001 From: Cuyler36 Date: Sun, 14 May 2023 11:21:34 -0400 Subject: [PATCH] Fix cyclic inclusion --- include/m_lib.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/m_lib.h b/include/m_lib.h index 87134171..641a5c7f 100644 --- a/include/m_lib.h +++ b/include/m_lib.h @@ -3,7 +3,7 @@ #include "types.h" #include "m_play.h" -#include "m_actor.h" +#include "m_actor_type.h" #ifdef __cplusplus extern "C" { @@ -18,11 +18,11 @@ typedef struct xy_s { f32 x, y; } xy_t; -typedef struct xyz_t { +typedef struct xyz_s { f32 x, y, z; } xyz_t; -typedef struct s_xyz { +typedef struct s_xyz_s { s16 x, y, z; } s_xyz;