common.h (402B)
1 //rendering resolution, not the actual window size 2 #define XREZ 200 3 #define YREZ 200 4 5 //main functions 6 void HoneyMain(); 7 void HoneyInit(); 8 9 //input functions 10 void Mouse1Pressed(); 11 void Mouse2Pressed(); 12 void UpdateCursor(uint32_t x, uint32_t y); 13 14 //render functions 15 void InitRender(); 16 void DrawFrame(); 17 uint8_t* GetPixBuf(); 18 uint32_t* GetPalette(); 19 20 enum 21 { 22 F_HONEY = 0, 23 F_HONEY_RUN_1 = 1, 24 F_TOTAL 25 };