mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
27 lines
341 B
C
27 lines
341 B
C
#ifndef AC_DUMMY_H
|
|
#define AC_DUMMY_H
|
|
|
|
#include "types.h"
|
|
#include "m_actor.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct actor_dummy_s DUMMY_ACTOR;
|
|
|
|
typedef void (*DUMMY_PROC)(DUMMY_ACTOR*, GAME_PLAY*);
|
|
|
|
struct actor_dummy_s{
|
|
ACTOR actor_class;
|
|
};
|
|
|
|
extern ACTOR_PROFILE Dummy_Profile;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|