1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 16:57:16 +01:00
SqMod/source/Misc/Vehicle.hpp

19 lines
603 B
C++
Raw Normal View History

#ifndef _MISC_VEHICLE_HPP_
#define _MISC_VEHICLE_HPP_
2015-09-30 02:56:11 +02:00
// ------------------------------------------------------------------------------------------------
#include "SqBase.hpp"
2015-09-30 02:56:11 +02:00
// ------------------------------------------------------------------------------------------------
namespace SqMod {
// ------------------------------------------------------------------------------------------------
CCStr GetAutomobileName(Uint32 id);
void SetAutomobileName(Uint32 id, CCStr name);
Int32 GetAutomobileID(CCStr name);
bool IsAutomobileValid(Int32 id);
2015-09-30 02:56:11 +02:00
} // Namespace:: SqMod
#endif // _MISC_VEHICLE_HPP_