* Add missing files.
This commit is contained in:
jean.chalard
2009-08-22 06:01:52 +00:00
parent 3349f974f1
commit b2f75d45e7
21 changed files with 1625 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#ifndef _GUIBACKGROUND_H_
#define _GUIBACKGROUND_H_
#include "GuiLayers.h"
#include "WEvent.h"
class GuiBackground : public GuiLayer
{
protected:
JQuad* quad;
public:
GuiBackground();
~GuiBackground();
virtual void Render();
};
#endif // _GUIBACKGROUND_H_