mirror of
https://github.com/HackerN64/HackerOoT.git
synced 2026-01-21 10:37:37 -08:00
18 lines
327 B
C
18 lines
327 B
C
#ifndef {actorFileNameCaps}_H
|
|
#define {actorFileNameCaps}_H
|
|
|
|
#include "ultra64.h"
|
|
#include "actor.h"
|
|
#include "play_state.h"
|
|
|
|
struct {actorSpec};
|
|
|
|
typedef void (*{actorSpec}ActionFunc)(struct {actorSpec}*, PlayState*);
|
|
|
|
typedef struct {actorSpec} {
|
|
Actor actor;
|
|
{actorSpec}ActionFunc actionFunc;
|
|
} {actorSpec};
|
|
|
|
#endif
|