mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-15 20:08:54 +03:00
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();
|
|
}; |