#pragma once #include using namespace glm; struct Vertex { vec3 pos; vec4 color; vec3 normal; }; struct CameraUBO { mat4 model; mat4 view; mat4 proj; float time; };