//===========================================================================// // File: l4app.thp // // Contents: // //---------------------------------------------------------------------------// // Date Who Modification // // -------- --- ---------------------------------------------------------- // // 03/09/95 ECH Initial coding. // //---------------------------------------------------------------------------// // Copyright (C) 1994, Virtual World Entertainment, Inc. All Rights reserved // // PROPRIETARY AND CONFIDENTIAL // //===========================================================================// #if !defined(L4APP_THP) # define L4APP_THP # if !defined(L4APP_HPP) # include # endif # if !defined(MISSION_HPP) # include # endif class L4TestApplication: public L4Application { public: L4TestApplication(StreamableResourceFile *resource_file); ~L4TestApplication(); private: Registry* MakeRegistry(); Entity* MakeViewpointEntity(Entity__MakeMessage*); }; class L4TestMission: public Mission { public: L4TestMission( NotationFile *notation_file, StreamableResourceFile *resources ); ~L4TestMission(); }; #endif