summaryrefslogtreecommitdiffstats
path: root/src/weapons/BulletInfo.h
blob: b10ef0a14a098132fe6155904f1df70527e593fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

class CEntity;
enum eWeaponType;

class CBulletInfo
{
public:
	static void Initialise(void);
	static void Shutdown(void);
	static void AddBullet(CEntity *firingEntity, eWeaponType type, CVector pos, CVector velocity);
	static void Update(void);
	static bool TestForSniperBullet(float x1, float x2, float y1, float y2, float z1, float z2);
};