#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); };