Newer
Older
GameEngine / src / Framework / IPlatform.h
@John Ryland John Ryland on 22 Aug 338 bytes save WIP
#pragma once

/*
	ApplicationFramework
	by John Ryland
	Copyright (c) 2023
*/

////////////////////////////////////////////////////////////////////////////////////
//	Platform Interface

#include "ISystem.h"

namespace ApplicationFramework {

class IPlatform : public ISystem
{
public:
    // TODO
};

} // ApplicationFramework namespace