mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
23 lines
277 B
C
23 lines
277 B
C
#ifndef AC_BR_SHOP_H
|
|
#define AC_BR_SHOP_H
|
|
|
|
#include "ac_structure.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct actor_broker_shop_s {
|
|
STRUCTURE_ACTOR structure_class;
|
|
} BRSHOP_ACTOR;
|
|
|
|
|
|
extern ACTOR_PROFILE BrShop_Profile;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|