base setup for osx in place

This commit is contained in:
Omar Mohamed Ali Mudhir
2017-01-14 18:30:19 +00:00
commit 13d8e6e563
18 changed files with 1143 additions and 0 deletions

22
engine/app.hpp Normal file
View File

@@ -0,0 +1,22 @@
#pragma once
#include "shader.hpp"
#include "shape.hpp"
#include "texture.hpp"
class App
{
Shader shader;
Shader shader_color;
Plane plane;
Plane longPlane;
Circle circle;
Texture2D tex;
public:
static App I;
int width;
int height;
void init();
void create();
void update(float dt);
};