diff options
author | Fire_Head <Fire-Head@users.noreply.github.com> | 2019-10-27 04:39:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-27 04:39:56 +0100 |
commit | c39cf2d960ce546c544872a732560b731d8c3897 (patch) | |
tree | d7a4b2ec22bcb6a9f6d8ef2602c7fdbac417d18b /src/weapons/CProjectileInfo.h | |
parent | ControllerConfig done (diff) | |
parent | Merge branch 'master' into master (diff) | |
download | re3-c39cf2d960ce546c544872a732560b731d8c3897.tar re3-c39cf2d960ce546c544872a732560b731d8c3897.tar.gz re3-c39cf2d960ce546c544872a732560b731d8c3897.tar.bz2 re3-c39cf2d960ce546c544872a732560b731d8c3897.tar.lz re3-c39cf2d960ce546c544872a732560b731d8c3897.tar.xz re3-c39cf2d960ce546c544872a732560b731d8c3897.tar.zst re3-c39cf2d960ce546c544872a732560b731d8c3897.zip |
Diffstat (limited to '')
-rw-r--r-- | src/weapons/CProjectileInfo.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/weapons/CProjectileInfo.h b/src/weapons/CProjectileInfo.h new file mode 100644 index 00000000..426d25f1 --- /dev/null +++ b/src/weapons/CProjectileInfo.h @@ -0,0 +1,20 @@ +#pragma once + +#include "Object.h" +#include "Weapon.h" + +struct CProjectileInfo : public CObject { + eWeaponType m_eWeaponType; + CEntity *m_pSource; + int m_nExplosionTime; + char m_bInUse; + char field_13; + char field_14; + char field_15; + CVector m_vecPos; + + static CProjectileInfo *GetProjectileInfo(int32 id); + static CProjectileInfo *ms_apProjectile; +}; + +extern CProjectileInfo *gaProjectileInfo;
\ No newline at end of file |