mirror of
https://github.com/syoyo/tinygltf.git
synced 2026-09-14 14:28:28 +00:00
add basic example
This commit is contained in:
15
examples/basic/window.h
Normal file
15
examples/basic/window.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include <GLFW/glfw3.h>
|
||||
|
||||
class Window
|
||||
{
|
||||
public:
|
||||
GLFWwindow* window;
|
||||
|
||||
Window(int x, int y, const char* title);
|
||||
~Window();
|
||||
void Resize();
|
||||
int Close();
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user