Files
ac-decomp/include/m_actor.h
T
2023-04-23 18:46:44 -04:00

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