00001 /* ScreenStyleSplash - Screen that displays the style the player selected. */ 00002 00003 #ifndef SCREEN_STYLE_SPLASH_H 00004 #define SCREEN_STYLE_SPLASH_H 00005 00006 #include "ScreenWithMenuElements.h" 00007 00008 class ScreenStyleSplash : public ScreenWithMenuElements 00009 { 00010 public: 00011 ScreenStyleSplash( CString sName ); 00012 00013 virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI ); 00014 virtual void HandleScreenMessage( const ScreenMessage SM ); 00015 virtual void DrawPrimitives(); 00016 00017 protected: 00018 void MenuStart( PlayerNumber pn ); 00019 void MenuBack( PlayerNumber pn ); 00020 }; 00021 00022 #endif 00023 00024 /* 00025 * (c) 2001-2004 Chris Danford, "Frieza" 00026 * All rights reserved. 00027 * 00028 * Permission is hereby granted, free of charge, to any person obtaining a 00029 * copy of this software and associated documentation files (the 00030 * "Software"), to deal in the Software without restriction, including 00031 * without limitation the rights to use, copy, modify, merge, publish, 00032 * distribute, and/or sell copies of the Software, and to permit persons to 00033 * whom the Software is furnished to do so, provided that the above 00034 * copyright notice(s) and this permission notice appear in all copies of 00035 * the Software and that both the above copyright notice(s) and this 00036 * permission notice appear in supporting documentation. 00037 * 00038 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 00039 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 00040 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF 00041 * THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS 00042 * INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT 00043 * OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS 00044 * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 00045 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 00046 * PERFORMANCE OF THIS SOFTWARE. 00047 */