Subversion Repositories AndroidProjects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
244 chris 1
#ifndef __BOARD_H__
2
#define __BOARD_H__
3
 
4
#include "SexyAppFramework/Widget.h"
5
 
6
namespace Sexy
7
{
8
 
9
class XMLDemoApp;
10
 
11
class Board : public Widget
12
{
13
 
14
public:
15
 
16
        XMLDemoApp* mApp;
17
 
18
public:
19
 
20
        Board(XMLDemoApp* theApp);
21
        virtual ~Board();
22
 
23
        void            Update();
24
        void            Draw(Graphics* g);
25
};
26
 
27
}
28
 
29
#endif //__BOARD_H__