mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
20 lines
616 B
C++
20 lines
616 B
C++
#ifndef _MISC_MODEL_HPP_
|
|
#define _MISC_MODEL_HPP_
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
#include "SqBase.hpp"
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
namespace SqMod {
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
CCStr GetModelName(Int32 id);
|
|
void SetModelName(Int32 id, CCStr name);
|
|
bool IsModelWeapon(Int32 id);
|
|
bool IsModelActuallyWeapon(Int32 id);
|
|
bool IsWeaponNatural(Int32 id);
|
|
|
|
} // Namespace:: SqMod
|
|
|
|
#endif // _MISC_MODEL_HPP_
|