//===========================================================================// // File: btscnrl.hpp // // Project: MUNGA // // Contents: BT Scenario Role Specific Data // //------------------- -------------------------------------------------------// // Date Who Modification // // -------- --- ---------------------------------------------------------- // // 05/06/96 GDU Initial coding // //---------------------------------------------------------------------------// // Copyright (C) 1996, Virtual World Entertainment, Inc. // // All Rights reserved worldwide // // This unpublished sourcecode is PROPRIETARY and CONFIDENTIAL // //===========================================================================// #if !defined(BTSCNRL_HPP) # define BTSCNRL_HPP # if !defined(SCNROLE_HPP) # include # endif //########################################################################## //###################### BTScenarioRole ############################## //########################################################################## class BTScenarioRole: public ScenarioRole { public: typedef ScenarioRole__ModelResource ModelResource; BTScenarioRole( const CString &role_name, const CString &model_file ): ScenarioRole(role_name, model_file) {} BTScenarioRole(const CString &role_name): ScenarioRole(role_name) {} }; #endif