love-demo2/include/window.h

14 lines
191 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
extern float g_window_width;
extern float g_window_height;
void update_window(int width, int height);
#ifdef __cplusplus
}
#endif