Files
ac-decomp/include/m_olib.h
T
2023-03-24 16:04:45 -04:00

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