mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-03 08:15:35 +00:00
12 lines
237 B
C++
12 lines
237 B
C++
#include "VehicleData.h"
|
|
#include "Common.h"
|
|
|
|
TVehicleData::TVehicleData(int ID, const std::string& Data)
|
|
: _ID(ID)
|
|
, _Data(Data) {
|
|
}
|
|
|
|
TVehicleData::~TVehicleData() {
|
|
debug("vehicle " + std::to_string(_ID) + " destroyed");
|
|
}
|