//===========================================================================// // File: rpl4mssn.hpp // // Project: MUNGA Brick: // // Contents: Interface specification for missions // //---------------------------------------------------------------------------// // Date Who Modification // // -------- --- ---------------------------------------------------------- // // 04/07/95 ECH Initial coding. // //---------------------------------------------------------------------------// // Copyright (C) 1995, Virtual World Entertainment, Inc. // // All Rights reserved worldwide // // This unpublished sourcecode is PROPRIETARY and CONFIDENTIAL // //===========================================================================// #if !defined(RPL4MSSN_HPP) # define RPL4MSSN_HPP # if !defined(RPMSSN_HPP) # include # endif //########################################################################## //########################### RPL4Mission ############################ //########################################################################## class RPL4Mission: public RPMission { public: RPL4Mission( NotationFile *notation_file, ResourceFile *resources ); ~RPL4Mission(); Logical TestInstance() const; void SetPlayerData(NotationFile *notation_file); }; #endif