10 lines
170 B
C
10 lines
170 B
C
#pragma once
|
|
|
|
#include <common.h>
|
|
|
|
static const int SCREEN_WIDTH = 1024;
|
|
static const int SCREEN_HEIGHT = 768;
|
|
|
|
void ui_init();
|
|
void ui_handle_events();
|
|
void ui_update(); |