link ac_cracker

This commit is contained in:
Prakxo
2023-09-18 21:42:52 +02:00
parent e9f9d94cc4
commit 30039a8e1f
4 changed files with 138 additions and 3 deletions
+10
View File
@@ -3,6 +3,7 @@
#include "types.h"
#include "m_actor.h"
#include "ac_tools.h"
#ifdef __cplusplus
extern "C" {
@@ -10,6 +11,15 @@ extern "C" {
extern ACTOR_PROFILE T_Cracker_Profile;
typedef void (*CRACKER_PROC)(ACTOR*);
typedef struct t_cracker_s{
TOOLS_ACTOR tools_class;
u8 pad2[0x8];
CRACKER_PROC proc;
int current_id;
}CRACKER_ACTOR;
#ifdef __cplusplus
}
#endif
+2 -3
View File
@@ -8,6 +8,8 @@
extern "C" {
#endif
extern ACTOR_PROFILE T_Pistol_Profile;
typedef void (*PISTOL_PROC)(ACTOR*);
typedef struct t_pistol_s{
@@ -17,9 +19,6 @@ typedef struct t_pistol_s{
int current_id;
}PISTOL_ACTOR;
extern ACTOR_PROFILE T_Pistol_Profile;
#ifdef __cplusplus
}
#endif