Merge pull request #246 from Sergeanur/Pools

Some CPool and CPools funcs, restoring original logic of pool lookup loops
This commit is contained in:
Sergeanur 2019-10-21 16:09:44 +03:00 committed by GitHub
commit 4844b3a3f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 147 additions and 51 deletions

View 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); }

View file

@ -0,0 +1,9 @@
#pragma once
class CObject;
class CProjectileInfo
{
public:
static bool RemoveIfThisIsAProjectile(CObject *pObject);
};