scaffolding in preparation for adding simple load/export/save functionality

This commit is contained in:
2024-08-17 09:46:53 +01:00
parent 3f4c52e0d8
commit 1049f2b561
4 changed files with 26 additions and 0 deletions

View File

@@ -9,6 +9,10 @@ int KEY_G = GLFW_KEY_G;
int KEY_Y = GLFW_KEY_Y;
int KEY_Z = GLFW_KEY_Z;
int KEY_S = GLFW_KEY_S;
int KEY_E = GLFW_KEY_E;
int KEY_I = GLFW_KEY_I;
// Calls function exported from SML
void mouseMoveCallback(GLFWwindow *window, double xpos, double ypos) {
mltonMouseMoveCallback((float)xpos, (float)ypos);