Files
panopainter/engine/app.hpp
Omar Mohamed Ali Mudhir d5fed78bf5 add Slice9 type
2017-01-16 14:42:22 +00:00

25 lines
385 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;
Circle circle, circle2;
Rounded rounded;
Slice9 slice;
Texture2D tex;
public:
static App I;
int width;
int height;
void init();
void create();
void update(float dt);
};