rename window/render* to io/window*

this makes more sense, as we'll add more source files in this category
This commit is contained in:
Quinn
2025-04-14 13:25:13 +02:00
committed by Quinn
parent cf908a2f65
commit 76e3547313
3 changed files with 7 additions and 7 deletions

12
src/io/window.h Normal file
View File

@@ -0,0 +1,12 @@
// Copyright (c) 2025 Quinn
// Licensed under the MIT Licence. See LICENSE for details
#pragma once
#include <GLFW/glfw3.h>
struct renderdat {
GLFWwindow* win;
};
int window_init(struct renderdat* restrict rdat);
void window_free(struct renderdat* restrict rdat);