1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-30 05:57:12 +02:00

Dumped the old implementation. Started with a more simple approach.

This commit is contained in:
Sandu Liviu Catalin
2016-02-21 00:25:00 +02:00
parent 96ded94026
commit 06e598acfb
293 changed files with 37439 additions and 92564 deletions

18
source/Misc/Vehicle.hpp Normal file
View File

@ -0,0 +1,18 @@
#ifndef _MISC_VEHICLE_HPP_
#define _MISC_VEHICLE_HPP_
// ------------------------------------------------------------------------------------------------
#include "SqBase.hpp"
// ------------------------------------------------------------------------------------------------
namespace SqMod {
// ------------------------------------------------------------------------------------------------
CCStr GetAutomobileName(Uint32 id);
void SetAutomobileName(Uint32 id, CCStr name);
Int32 GetAutomobileID(CCStr name);
bool IsAutomobileValid(Int32 id);
} // Namespace:: SqMod
#endif // _MISC_VEHICLE_HPP_