11 lines
160 B
C
11 lines
160 B
C
#ifndef UI_H
|
|
#define UI_H
|
|
|
|
#include "aliases/aliases.h"
|
|
#include "window.h"
|
|
#include <stdbool.h>
|
|
|
|
bool aabb(const rect_t *rect, i32 x, i32 y);
|
|
|
|
#endif // !UI_H
|