mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Try to fix Windows build
This commit is contained in:
parent
61ffd88f34
commit
20e8bfd12a
|
@ -13,7 +13,6 @@
|
|||
|
||||
class CAntibot;
|
||||
class CGameTeams;
|
||||
class CSaveTee;
|
||||
struct CAntibotCharacterData;
|
||||
|
||||
enum
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include <game/server/gamemodes/DDRace.h>
|
||||
#include "plasma.h"
|
||||
|
||||
const float ACCEL = 1.1f;
|
||||
const float PLASMA_ACCEL = 1.1f;
|
||||
|
||||
CPlasma::CPlasma(CGameWorld *pGameWorld, vec2 Pos, vec2 Dir, bool Freeze,
|
||||
bool Explosive, int ResponsibleTeam) :
|
||||
|
@ -44,7 +44,7 @@ bool CPlasma::HitCharacter()
|
|||
void CPlasma::Move()
|
||||
{
|
||||
m_Pos += m_Core;
|
||||
m_Core *= ACCEL;
|
||||
m_Core *= PLASMA_ACCEL;
|
||||
}
|
||||
|
||||
void CPlasma::Reset()
|
||||
|
|
Loading…
Reference in a new issue