Files
escape-the-dawn/Escape-the-Dawn/GUIManager.h
T
2014-03-13 19:48:40 +01:00

26 lines
270 B
C++

/*#ifndef GUIManager_h__
#define GUIManager_h__
#include "Frame.h"
namespace GUI
{
class GUIManager
{
public:
int Add(Frame frame);
void Remove(Frame frame);
int CreateUID();
void Update(double dt);
void Draw();
private:
static int uidIndex;
};
}
#endif */