mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-03-25 21:38:29 -06:00
17 lines
367 B
C++
17 lines
367 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
|