Newer
Older
GameEngine / src / EditorUI / IView.h
@John Ryland John Ryland on 22 Aug 361 bytes save WIP
#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