Files
wagic/projects/mtg/include/GuiFrame.h
jean.chalard b2f75d45e7 J :
* Add missing files.
2009-08-22 06:01:52 +00:00

21 lines
294 B
C++

#ifndef _GUIFRAME_H_
#define _GUIFRAME_H_
#include "GuiLayers.h"
class GuiFrame : public GuiLayer
{
protected:
JQuad* wood;
JQuad* gold1, *gold2, *goldGlow;
float step;
public:
GuiFrame();
~GuiFrame();
virtual void Render();
void Update(float dt);
};
#endif // _GUIFRAME_H_