script 800-899

This commit is contained in:
Nikolay Korolev
2020-01-03 19:48:13 +03:00
parent 42ff0f7c58
commit 0723dade76
24 changed files with 1329 additions and 132 deletions

View File

@ -0,0 +1,5 @@
#include "common.h"
#include "patcher.h"
#include "BulletInfo.h"
WRAPPER bool CBulletInfo::TestForSniperBullet(float x1, float x2, float y1, float y2, float z1, float z2) { EAXJMP(0x558D40); }

7
src/weapons/BulletInfo.h Normal file
View File

@ -0,0 +1,7 @@
#pragma once
class CBulletInfo
{
public:
static bool TestForSniperBullet(float x1, float x2, float y1, float y2, float z1, float z2);
};