mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2026-04-03 14:26:09 +00:00
fix various issues
This commit is contained in:
committed by
Anonymous275
parent
8e4006fc38
commit
4edd1ac100
@@ -2,11 +2,11 @@
|
||||
#include "Common.h"
|
||||
|
||||
TVehicleData::TVehicleData(int ID, const std::string& Data)
|
||||
: _ID(ID)
|
||||
, _Data(Data) {
|
||||
debug("vehicle " + std::to_string(_ID) + " constructed");
|
||||
: mID(ID)
|
||||
, mData(Data) {
|
||||
debug("vehicle " + std::to_string(mID) + " constructed");
|
||||
}
|
||||
|
||||
TVehicleData::~TVehicleData() {
|
||||
debug("vehicle " + std::to_string(_ID) + " destroyed");
|
||||
debug("vehicle " + std::to_string(mID) + " destroyed");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user