Files
panopainter/engine/app.hpp
2017-01-16 00:22:44 +00:00

24 lines
376 B
C++

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