Files
GTASource/game/weapons/WeaponFactory.h
expvintl 419f2e4752 init
2025-02-23 17:40:52 +08:00

17 lines
479 B
C++

#ifndef WEAPON_FACTORY_H
#define WEAPON_FACTORY_H
// Game headers
#include "Weapons/Weapon.h"
//////////////////////////////////////////////////////////////////////////
// WeaponFactory
//////////////////////////////////////////////////////////////////////////
namespace WeaponFactory
{
CWeapon* Create(u32 uWeaponNameHash, s32 iAmmo = CWeapon::INFINITE_AMMO, CDynamicEntity* pDrawable = NULL, const char* debugstring = NULL, u8 tintIndex = 0);
}
#endif // WEAPON_FACTORY_H