mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-06-08 11:47:05 -04:00
13 lines
155 B
C
13 lines
155 B
C
#ifndef M_OLIB_H
|
|
#define M_OLIB_H
|
|
|
|
#include "types.h"
|
|
#include "libu64/u64types.h"
|
|
|
|
typedef struct rect_s {
|
|
int top, bottom;
|
|
int l, r;
|
|
} rect;
|
|
|
|
#endif
|