//===========================================================================// // 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() { }