Initial commit.

This commit is contained in:
Aleksander Rognhaugen
2016-01-29 14:28:37 +01:00
commit 82a4de6b9a
18 changed files with 764 additions and 0 deletions

16
gloom/src/program.hpp Normal file
View File

@@ -0,0 +1,16 @@
#ifndef PROGRAM_HPP
#define PROGRAM_HPP
#pragma once
// System headers
#include <GLFW/glfw3.h>
// Main OpenGL program
void runProgram(GLFWwindow* mWindow);
// GLFW callback mechanisms
void keyboardCallback(GLFWwindow* window, int key, int scancode,
int action, int mods);
#endif