#pragma once #include "Engine.h" #include "src/Rendering/Textures/Texture.h" class Viewport { public: std::string Name = ""; Ref Texture; Viewport(const std::string& name, Ref texture); void Draw(); };