blob: 4d9a1f9cae3adace58490936cfe48f566bac5e63 (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
struct GLFWwindow;
void platform_init();
void platform_shutdown();
void platform_poll();
bool platform_should_close();
GLFWwindow *platform_get_window();
double platform_get_time();
|