mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-08 13:00:36 +00:00
Merge pull request #246 from Sergeanur/Pools
Some CPool and CPools funcs, restoring original logic of pool lookup loops
This commit is contained in:
commit
4844b3a3f8
13 changed files with 147 additions and 51 deletions
7
src/weapons/ProjectileInfo.cpp
Normal file
7
src/weapons/ProjectileInfo.cpp
Normal file
|
@ -0,0 +1,7 @@
|
|||
#include "common.h"
|
||||
#include "patcher.h"
|
||||
#include "ProjectileInfo.h"
|
||||
#include "Projectile.h"
|
||||
|
||||
|
||||
WRAPPER bool CProjectileInfo::RemoveIfThisIsAProjectile(CObject *pObject) { EAXJMP(0x55BBD0); }
|
9
src/weapons/ProjectileInfo.h
Normal file
9
src/weapons/ProjectileInfo.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
#pragma once
|
||||
|
||||
class CObject;
|
||||
|
||||
class CProjectileInfo
|
||||
{
|
||||
public:
|
||||
static bool RemoveIfThisIsAProjectile(CObject *pObject);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue