re3/src/objects/Projectile.cpp

16 lines
316 B
C++
Raw Permalink Normal View History

#include "common.h"
2020-04-17 13:31:11 +00:00
#include "Projectile.h"
2020-01-07 15:26:23 +00:00
CProjectile::CProjectile(int32 model) : CObject()
{
m_fMass = 1.0f;
m_fTurnMass = 1.0f;
2020-01-31 22:41:03 +00:00
m_fAirResistance = 0.99999f;
2020-01-07 15:26:23 +00:00
m_fElasticity = 0.75f;
m_fBuoyancy = GRAVITY * m_fMass * 0.1f;
bExplosionProof = true;
SetModelIndex(model);
ObjectCreatedBy = MISSION_OBJECT;
}