mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
30 lines
1.1 KiB
C++
30 lines
1.1 KiB
C++
#pragma once
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
#include "SqBase.hpp"
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
namespace SqMod {
|
|
|
|
/* ------------------------------------------------------------------------------------------------
|
|
* Retrieve the name associated with a skin model identifier.
|
|
*/
|
|
CCStr GetSkinName(Uint32 id);
|
|
|
|
/* ------------------------------------------------------------------------------------------------
|
|
* Modify the name associated with a skin model identifier.
|
|
*/
|
|
void SetSkinName(Uint32 id, StackStrF & name);
|
|
|
|
/* ------------------------------------------------------------------------------------------------
|
|
* Convert a vehicle model name to a skin model identifier.
|
|
*/
|
|
Int32 GetSkinID(StackStrF & name);
|
|
|
|
/* ------------------------------------------------------------------------------------------------
|
|
* See whether the specified skin model identifier is valid.
|
|
*/
|
|
bool IsSkinValid(Int32 id);
|
|
|
|
} // Namespace:: SqMod
|