mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 11:38:19 +00:00
0df6d0541f
Conflicts: bam.lua src/engine/console.h src/engine/server.h src/engine/server/server.cpp src/engine/shared/config.h src/engine/shared/config_variables.h src/engine/shared/console.cpp src/engine/shared/console.h src/game/client/components/binds.cpp src/game/client/components/chat.h src/game/client/components/console.cpp src/game/client/components/console.h src/game/client/components/controls.cpp src/game/client/components/emoticon.h src/game/client/components/maplayers.cpp src/game/client/components/menus.h src/game/client/components/scoreboard.h src/game/client/components/spectator.h src/game/client/components/voting.h src/game/client/gameclient.cpp src/game/client/gameclient.h src/game/client/render.h src/game/collision.cpp src/game/editor/ed_layer_tiles.cpp src/game/gamecore.cpp src/game/gamecore.h src/game/layers.cpp src/game/layers.h src/game/mapitems.h src/game/server/entities/character.cpp src/game/server/entities/laser.cpp src/game/server/entities/laser.h src/game/server/entities/pickup.cpp src/game/server/entities/pickup.h src/game/server/entities/projectile.cpp src/game/server/gamecontext.cpp src/game/server/gamecontroller.cpp src/game/server/gamecontroller.h src/game/server/gameworld.cpp src/game/server/gameworld.h src/game/server/player.cpp src/game/variables.h
29 lines
615 B
C++
29 lines
615 B
C++
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
|
|
/* If you are missing that file, acquire a complete release at teeworlds.com. */
|
|
#ifndef GAME_CLIENT_COMPONENTS_MAPIMAGES_H
|
|
#define GAME_CLIENT_COMPONENTS_MAPIMAGES_H
|
|
#include <game/client/component.h>
|
|
|
|
class CMapImages : public CComponent
|
|
{
|
|
int m_aTextures[64];
|
|
int m_Count;
|
|
public:
|
|
CMapImages();
|
|
|
|
int Get(int Index) const { return m_aTextures[Index]; }
|
|
int Num() const { return m_Count; }
|
|
|
|
virtual void OnMapLoad();
|
|
|
|
// DDRace
|
|
|
|
int GetEntities();
|
|
|
|
private:
|
|
|
|
int m_EntitiesTextures;
|
|
};
|
|
|
|
#endif
|