mirror of
https://github.com/encounter/ac-decomp.git
synced 2026-03-30 10:57:04 -07:00
b16da413bf
* match ev_cherry_manager.c * remove extra include * update cherry manager definitions
23 lines
310 B
C
23 lines
310 B
C
#ifndef EV_CHERRY_MANAGER_H
|
|
#define EV_CHERRY_MANAGER_H
|
|
|
|
#include "types.h"
|
|
#include "m_actor.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern ACTOR_PROFILE Ev_Cherry_Manager_Profile;
|
|
|
|
typedef struct cherry_manager_s {
|
|
ACTOR actor_class;
|
|
} CHERRY_MANAGER_EVENT_ACTOR;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|