mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2026-02-16 10:41:01 +00:00
15 lines
337 B
C++
15 lines
337 B
C++
#include "VehicleData.h"
|
|
|
|
#include "Common.h"
|
|
#include <utility>
|
|
|
|
TVehicleData::TVehicleData(int ID, std::string Data)
|
|
: mID(ID)
|
|
, mData(std::move(Data)) {
|
|
beammp_trace("vehicle " + std::to_string(mID) + " constructed");
|
|
}
|
|
|
|
TVehicleData::~TVehicleData() {
|
|
beammp_trace("vehicle " + std::to_string(mID) + " destroyed");
|
|
}
|