Implement and link ac_dummy (#217)

This commit is contained in:
Hexalotl
2024-01-10 10:59:35 -08:00
committed by GitHub
parent 50b13bea9d
commit 58654394e1
3 changed files with 45 additions and 0 deletions
+8
View File
@@ -8,6 +8,14 @@
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