add basic example

This commit is contained in:
viperscape
2018-11-15 17:02:20 -05:00
parent 764bcb5a8a
commit 0ddfaead8f
11 changed files with 415 additions and 0 deletions

15
examples/basic/window.h Normal file
View 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();
};