mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
27 lines
357 B
C
27 lines
357 B
C
#ifndef AC_T_PISTOL_H
|
|
#define AC_T_PISTOL_H
|
|
|
|
#include "types.h"
|
|
#include "ac_tools.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern ACTOR_PROFILE T_Pistol_Profile;
|
|
|
|
typedef void (*PISTOL_PROC)(ACTOR*);
|
|
|
|
typedef struct t_pistol_s{
|
|
TOOLS_ACTOR tools_class;
|
|
PISTOL_PROC proc;
|
|
int current_id;
|
|
}PISTOL_ACTOR;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|