2022-03-10 09:18:53 +00:00
|
|
|
#ifdef COOP
|
|
|
|
#ifndef DYNOS_COOP_C_H
|
|
|
|
#define DYNOS_COOP_C_H
|
|
|
|
#ifndef __cplusplus
|
|
|
|
|
|
|
|
bool dynos_warp_to_level(s32 aLevel, s32 aArea, s32 aAct);
|
2022-03-12 02:11:32 +00:00
|
|
|
bool dynos_warp_restart_level(void);
|
|
|
|
bool dynos_warp_exit_level(s32 aDelay);
|
|
|
|
bool dynos_warp_to_castle(s32 aLevel);
|
2022-03-10 09:18:53 +00:00
|
|
|
|
2022-03-11 02:16:12 +00:00
|
|
|
int dynos_packs_get_count(void);
|
|
|
|
const char* dynos_packs_get(s32 index);
|
|
|
|
bool dynos_packs_get_enabled(s32 index);
|
|
|
|
void dynos_packs_set_enabled(s32 index, bool value);
|
|
|
|
|
2022-03-17 04:26:29 +00:00
|
|
|
void dynos_generate_packs(const char* directory);
|
|
|
|
|
2022-03-16 08:11:48 +00:00
|
|
|
void dynos_add_actor_custom(const char *modPath, const char* geoName);
|
2022-03-14 07:11:36 +00:00
|
|
|
const void* dynos_geolayout_get(const char *name);
|
|
|
|
|
2022-03-10 09:18:53 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#endif
|