mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
20 lines
615 B
C++
20 lines
615 B
C++
#ifndef _MISC_WEAPON_HPP_
|
|
#define _MISC_WEAPON_HPP_
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
#include "SqBase.hpp"
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
namespace SqMod {
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
CCStr GetWeaponName(Uint32 id);
|
|
void SetWeaponName(Uint32 id, CCStr name);
|
|
Int32 GetWeaponID(CCStr name);
|
|
bool IsWeaponValid(Int32 id);
|
|
Int32 WeaponToModel(Int32 id);
|
|
|
|
} // Namespace:: SqMod
|
|
|
|
#endif // _MISC_WEAPON_HPP_
|