mirror of
https://github.com/zeldaret/ph
synced 2026-05-23 15:01:37 -04:00
16 lines
200 B
C++
16 lines
200 B
C++
#pragma once
|
|
|
|
#include "global.h"
|
|
#include "types.h"
|
|
|
|
struct ActorRef {
|
|
/* 0 */ s32 id;
|
|
/* 4 */ s32 index;
|
|
/* 8 */
|
|
|
|
inline void Reset() {
|
|
id = -1;
|
|
index = -1;
|
|
}
|
|
};
|