Sign in
flutter
/
third_party
/
tinygltf
/
refs/heads/int-minmax-serialize
/
.
/
examples
/
basic
/
window.h
blob: 3790c654aebaf52e98c86d4b9a618e0eff3e5341 [
file
] [
log
] [
blame
] [
edit
]
#pragma
once
#include
<GLFW/glfw3.h>
class
Window
{
public
:
GLFWwindow
*
window
;
Window
(
int
x
,
int
y
,
const
char
*
title
);
~
Window
();
void
Resize
();
int
Close
();
};