mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-13 11:38:19 +00:00
0b1b949a3c
Conflicts: src/game/server/entities/flag.cpp src/game/server/entities/flag.h src/game/server/gamemodes/ctf.cpp Signed-off-by: GreYFoXGTi <GreYFoXGTi@GMaiL.CoM>
27 lines
436 B
C++
27 lines
436 B
C++
/*#ifndef GAME_SERVER_ENTITIES_FLAG_H
|
|
#define GAME_SERVER_ENTITIES_FLAG_H
|
|
|
|
#include <game/server/entity.h>
|
|
|
|
class CFlag : public CEntity
|
|
{
|
|
public:
|
|
static const int ms_PhysSize = 14;
|
|
CCharacter *m_pCarryingCharacter;
|
|
vec2 m_Vel;
|
|
vec2 m_StandPos;
|
|
|
|
int m_Team;
|
|
int m_AtStand;
|
|
int m_DropTick;
|
|
int m_GrabTick;
|
|
|
|
CFlag(CGameWorld *pGameWorld, int Team);
|
|
|
|
virtual void Reset();
|
|
virtual void Snap(int SnappingClient);
|
|
};
|
|
|
|
#endif
|
|
*/
|