25 lines
397 B
C++
25 lines
397 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;
|
|
Rounded rounded;
|
|
Texture2D tex;
|
|
public:
|
|
static App I;
|
|
int width;
|
|
int height;
|
|
void init();
|
|
void create();
|
|
void update(float dt);
|
|
};
|