mirror of
https://git.mirrors.martin98.com/https://github.com/syoyo/tinygltf.git
synced 2025-04-22 05:59:55 +08:00
16 lines
172 B
C++
16 lines
172 B
C++
#pragma once
|
|
|
|
#include <GLFW/glfw3.h>
|
|
|
|
class Window
|
|
{
|
|
public:
|
|
GLFWwindow* window;
|
|
|
|
Window(int x, int y, const char* title);
|
|
~Window();
|
|
void Resize();
|
|
int Close();
|
|
};
|
|
|