#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;
};