link ac_fallS

This commit is contained in:
Prakxo
2024-02-21 00:06:14 +01:00
parent bd5bf8f147
commit ac352c7f15
9 changed files with 137 additions and 23 deletions
+5 -2
View File
@@ -1,13 +1,16 @@
#ifndef AC_FALLS_H
#define AC_FALLS_H
#include "types.h"
#include "m_actor.h"
#include "ac_structure.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct actor_fall_south_s{
STRUCTURE_ACTOR structure_class;
}FALLS_ACTOR;
extern ACTOR_PROFILE FallS_Profile;
#ifdef __cplusplus
+5 -2
View File
@@ -1,13 +1,16 @@
#ifndef AC_FALLSESW_H
#define AC_FALLSESW_H
#include "types.h"
#include "m_actor.h"
#include "ac_structure.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct actor_falls_south_east_west{
STRUCTURE_ACTOR structure_class;
}FALLSEW_ACTOR;
extern ACTOR_PROFILE FallSESW_Profile;
#ifdef __cplusplus
+2 -2
View File
@@ -7,9 +7,9 @@
extern "C" {
#endif
typedef struct actor_tent_s{
typedef struct TENT_ACTOR_s{
STRUCTURE_ACTOR structure_class;
}ACTOR_TENT;
}TENT_ACTOR;
extern ACTOR_PROFILE Tent_Profile;
+1
View File
@@ -44,6 +44,7 @@ extern int Math3D_sphereVsPipe_cl(Math3D_sphere_c* s, Math3D_pipe_c* c, f32* in)
extern int Math3D_pipeVsPipe_cl(Math3D_pipe_c* a, Math3D_pipe_c* b , f32* d);
extern int Math3D_sphereCrossTriangle3_cp(Math3D_sphere_c* s, Math3D_triangle_c* tri, xyz_t* ip);
extern int Math3D_pipeCrossTriangle_cp(Math3D_pipe_c* c,Math3D_triangle_c* tri, xyz_t* in);
extern void Math3DVectorProduct2Vec(const xyz_t* a, xyz_t* b, xyz_t* ret);
extern xyz_t ZeroVec;
extern s_xyz ZeroSVec;