13 lines
239 B
C++
13 lines
239 B
C++
#pragma once
|
|
#include "Engine.h"
|
|
#include "src/Rendering/Textures/Texture.h"
|
|
|
|
class Viewport
|
|
{
|
|
public:
|
|
std::string Name = "";
|
|
Ref<Nuake::Texture> Texture;
|
|
|
|
Viewport(const std::string& name, Ref<Nuake::Texture> texture);
|
|
void Draw();
|
|
}; |