1
0
mirror of https://github.com/blawar/ooot.git synced 2024-07-04 18:13:37 +00:00
ooot/include/ultra64/time.h
2022-02-14 10:56:16 -05:00

18 lines
327 B
C

#ifndef ULTRA64_TIME_H
#define ULTRA64_TIME_H
#include "message.h"
typedef u64 OSTime;
struct OSTimer {
/* 0x00 */ struct OSTimer* next;
/* 0x04 */ struct OSTimer* prev;
/* 0x08 */ OSTime interval;
/* 0x10 */ OSTime value;
/* 0x18 */ OSMesgQueue* mq;
/* 0x1C */ OSMesg msg;
}; // size = 0x20
#endif