mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 11:38:19 +00:00
16 lines
252 B
C++
16 lines
252 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_reset();
|
|
};
|
|
|