mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
19 lines
185 B
C
19 lines
185 B
C
#ifndef M_ACTOR_H
|
|
#define M_ACTOR_H
|
|
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct actor_s {
|
|
/* TODO ... */
|
|
} ACTOR;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|