mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-14 03:58:18 +00:00
16 lines
253 B
C++
16 lines
253 B
C++
#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_mapload();
|
|
};
|
|
|