Files
TeslaRel410/CODE/RP/MUNGA_L4/L4APP.TCP
T
CydandClaude Fable 5 fdd9ac9d97 Initial import: Tesla Release 4.10 (Tesla:BattleTech & Tesla:Red Planet)
Archival snapshot of the Virtual World Entertainment Tesla cockpit
software, 1994-1996: MUNGA engine and L4 pod layer source (Borland
C++ 5.0), BT/RP game code, and game content (models, audio, maps,
gauges, Division renderer data). Includes third-party libraries:
Division dVS/DPL graphics, HMI SOS audio, WATTCP networking.

Files are preserved byte-for-byte (.gitattributes disables all
line-ending conversion). README.md documents the layout, target
hardware, and toolchain.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-02 13:21:58 -05:00

83 lines
2.9 KiB
Plaintext

//===========================================================================//
// File: l4app.tcp //
// Contents: //
//---------------------------------------------------------------------------//
// Date Who Modification //
// -------- --- ---------------------------------------------------------- //
// 03/09/95 ECH Initial coding. //
//---------------------------------------------------------------------------//
// Copyright (C) 1994, Virtual World Entertainment, Inc. All Rights reserved //
// PROPRIETARY AND CONFIDENTIAL //
//===========================================================================//
#include "l4app.thp"
#include "entity.thp"
#include "registry.hpp"
//##########################################################################
//####################### L4TestApplication ##########################
//##########################################################################
//
//#############################################################################
//#############################################################################
//
L4TestApplication::L4TestApplication(StreamableResourceFile *resource_file):
L4Application(resource_file, (ApplicationID)0)
{
}
//
//#############################################################################
//#############################################################################
//
L4TestApplication::~L4TestApplication()
{
}
//
//#############################################################################
//#############################################################################
//
Registry*
L4TestApplication::MakeRegistry()
{
return new Registry;
}
//
//#############################################################################
//#############################################################################
//
Entity*
L4TestApplication::MakeViewpointEntity(Entity::MakeMessage *message)
{
return TestEntity::Make(message);
}
//##########################################################################
//########################## L4TestMission ###########################
//##########################################################################
//
//#############################################################################
//#############################################################################
//
L4TestMission::L4TestMission(
NotationFile *notation_file,
StreamableResourceFile *resources
):
Mission(notation_file, resources)
{
}
//
//#############################################################################
//#############################################################################
//
L4TestMission::~L4TestMission()
{
}