mirror of
https://github.com/SantaSpeen/BeamMP-Server.git
synced 2026-04-03 10:06:02 +00:00
13 lines
299 B
C++
13 lines
299 B
C++
#include "VehicleData.h"
|
|
#include "Common.h"
|
|
|
|
TVehicleData::TVehicleData(int ID, const std::string& Data)
|
|
: mID(ID)
|
|
, mData(Data) {
|
|
debug("vehicle " + std::to_string(mID) + " constructed");
|
|
}
|
|
|
|
TVehicleData::~TVehicleData() {
|
|
debug("vehicle " + std::to_string(mID) + " destroyed");
|
|
}
|