mirror of
https://github.com/thepigeongenerator/mcaselector-lite.git
synced 2025-12-19 07:55:47 +01:00
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:
12
src/io/window.h
Normal file
12
src/io/window.h
Normal 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);
|
||||
Reference in New Issue
Block a user