mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 13:47:43 +00:00
Sometimes I hate git
This commit is contained in:
21
Runtime/Weapon/CProjectileInfo.cpp
Normal file
21
Runtime/Weapon/CProjectileInfo.cpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#include "CProjectileInfo.hpp"
|
||||
#include "World/CDamageInfo.hpp"
|
||||
#include "GameGlobalObjects.hpp"
|
||||
#include "CSimplePool.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
|
||||
CProjectileInfo::CProjectileInfo(CAssetId proj, const CDamageInfo & dInfo)
|
||||
: x0_weaponDescription(g_SimplePool->GetObj({SBIG('WPSC'), proj}))
|
||||
, xc_damageInfo(dInfo)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
zeus::CVector3f CProjectileInfo::PredictInterceptPos(const zeus::CVector3f &, const zeus::CVector3f &, const CPlayer &, bool)
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user