mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-22 22:24:16 -04:00
25 lines
364 B
C
25 lines
364 B
C
#ifndef AC_COUNTDOWN_H
|
|
#define AC_COUNTDOWN_H
|
|
|
|
#include "types.h"
|
|
#include "ac_structure.h"
|
|
#include "ac_countdown_clip.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct countdown_actor_s COUNT_ACTOR;
|
|
|
|
struct countdown_actor_s {
|
|
/* 0x000 */ STRUCTURE_ACTOR structure_class;
|
|
};
|
|
|
|
extern ACTOR_PROFILE Count_Profile;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|