mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 10:38:20 +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();
|
||
|
};
|
||
|
|