1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-30 22:17:13 +02:00

Initial commit.

This commit is contained in:
Sandu Liviu Catalin
2015-09-30 03:56:11 +03:00
parent 4bd8e68a7b
commit 6ed02d0fd4
118 changed files with 23795 additions and 0 deletions

22
source/Entity/Vehicle.hpp Normal file
View File

@ -0,0 +1,22 @@
#ifndef _ENTITY_VEHICLE_HPP_
#define _ENTITY_VEHICLE_HPP_
// ------------------------------------------------------------------------------------------------
#include "Entity.hpp"
// ------------------------------------------------------------------------------------------------
namespace SqMod {
/* ------------------------------------------------------------------------------------------------
* ...
*/
class CVehicle : public Reference< CVehicle >
{
public:
// --------------------------------------------------------------------------------------------
using RefType::Reference;
};
} // Namespace:: SqMod
#endif // _ENTITY_VEHICLE_HPP_