blob: c2919f082b1954fccc4e58f2db47dfe3a34796da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <game/client/component.hpp>
class MAPLAYERS : public COMPONENT
{
int type;
public:
enum
{
TYPE_BACKGROUND=0,
TYPE_FOREGROUND,
};
MAPLAYERS(int type);
virtual void on_render();
};
|