46af97727a
ignored by the loader, but will allow the loader to skip over them and continue reading the rest of the file correctly.
62 lines
1.1 KiB
C++
62 lines
1.1 KiB
C++
// RoadRecords.cpp
|
|
|
|
#include "flt.h"
|
|
#include "Registry.h"
|
|
#include "RoadRecords.h"
|
|
|
|
using namespace flt;
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// RoadSegmentRecord
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
RegisterRecordProxy<RoadSegmentRecord> g_RoadSegmentProxy;
|
|
|
|
RoadSegmentRecord::RoadSegmentRecord()
|
|
{
|
|
}
|
|
|
|
|
|
// virtual
|
|
RoadSegmentRecord::~RoadSegmentRecord()
|
|
{
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// RoadConstructionRecord
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
RegisterRecordProxy<RoadConstructionRecord> g_RoadConstructionProxy;
|
|
|
|
RoadConstructionRecord::RoadConstructionRecord()
|
|
{
|
|
}
|
|
|
|
|
|
// virtual
|
|
RoadConstructionRecord::~RoadConstructionRecord()
|
|
{
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// RoadPathRecord
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
RegisterRecordProxy<RoadPathRecord> g_RoadPathProxy;
|
|
|
|
RoadPathRecord::RoadPathRecord()
|
|
{
|
|
}
|
|
|
|
|
|
// virtual
|
|
RoadPathRecord::~RoadPathRecord()
|
|
{
|
|
}
|