blob: 78c571bdec82aa79c87d146acc2e0f9410c1145f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef ACTOR_LIST_INDEX_H
#define ACTOR_LIST_INDEX_H
#ifdef __cplusplus
extern "C" {
#include "z64actor.h"
#endif
int16_t GetActorListIndex(const Actor* actor);
void SetActorListIndex(const Actor* actor, int16_t index);
extern s16 currentActorListIndex;
#ifdef __cplusplus
}
#endif
#endif // ACTOR_LIST_INDEX_H
|