Skip to content

Commit

Permalink
Added missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Oct 27, 2011
1 parent 7c28bf7 commit cd0e45e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions netlogic/about.h
@@ -0,0 +1,28 @@

#ifndef _about_h
#define _about_h

#include "../Maelstrom_Globals.h"

class Object;

class AboutPanelDelegate : public UIPanelDelegate
{
public:
AboutPanelDelegate(UIPanel *panel) : UIPanelDelegate(panel) {
numsprites = 0;
}
virtual ~AboutPanelDelegate() {
assert(numsprites == 0);
}

virtual void OnShow();
virtual void OnHide();
virtual void OnDraw();

protected:
int numsprites;
Object *objects[MAX_SPRITES];
};

#endif // _about_h

0 comments on commit cd0e45e

Please sign in to comment.