Files
Seele/src/Engine/Graphics/View.h
T

10 lines
177 B
C++
Raw Normal View History

#pragma once
#include "Window.h"
// A view is a part of the window, which can be anything from a viewport to an editor
class View
{
public:
private:
Window::Section* owner;
};