#pragma once

/*
	GameEngine and Editor
	by John Ryland
	Copyright (c) 2023
*/

////////////////////////////////////////////////////////////////////////////////////
//	View Interface

#include "ISystem.h"

namespace GameEngine {

class IView : public ApplicationFramework::ISystem
{
public:
    virtual void AddShowMenuItem() = 0;
};

} // GameEngine namespace
