mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-02-17 10:33:03 -07:00
16 lines
366 B
C++
16 lines
366 B
C++
#include "../ht.h"
|
|
#include "xtransport.h"
|
|
|
|
namespace wi {
|
|
|
|
TransportMgr gtram;
|
|
|
|
//---------------------------------------------------------------------------
|
|
// TransportMgr implementation
|
|
|
|
int TransportMgr::GetTransportDescriptions(TransportDescription *atrad, int ctradMax)
|
|
{
|
|
return XTransport::GetTransportDescriptions(atrad, ctradMax);
|
|
}
|
|
|
|
} // namespace wi
|