mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-01-24 00:24:06 -05:00
15 lines
328 B
C
15 lines
328 B
C
#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);
|
|
|
|
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);
|
|
|
|
#endif
|
|
#endif
|
|
#endif
|