about summary refs log tree commit diff
path: root/src/game/client/components/mapimages.hpp
blob: e1e0063da047603624021b4ecdd0518ec9c31464 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <game/client/component.hpp>

class MAPIMAGES : public COMPONENT
{	
	int textures[64];
	int count;
public:
	MAPIMAGES();
	
	int get(int index) const { return textures[index]; }
	int num() const { return count; }
	
	virtual void on_reset();
};