00001 #ifndef _SCREEN_TEST_H 00002 #define _SCREEN_TEST_H 00003 00004 #include "MercuryScreen.h" 00005 00007 class ScreenTest : public MercuryScreen 00008 { 00009 public: 00010 ScreenTest( ); 00011 ScreenTest( const MString & name ); 00012 virtual ~ScreenTest(); 00013 00014 virtual void Update( const float dTime ); 00015 virtual void Init(); 00016 virtual void Message( int Message, PStack & data, const MString & name ); 00017 00018 CLASS_RTTI( ScreenTest, MercuryScreen ); 00019 private: 00020 }; 00021 00022 #endif 00023 00024 /* 00025 * Copyright (c) 2006 Joshua Allen 00026 * All rights reserved. 00027 * 00028 * Redistribution and use in source and binary forms, with or 00029 * without modification, are permitted provided that the following 00030 * conditions are met: 00031 * - Redistributions of source code must retain the above 00032 * copyright notice, this list of conditions and the following disclaimer. 00033 * - Redistributions in binary form must reproduce the above copyright 00034 * notice, this list of conditions and the following disclaimer in 00035 * the documentation and/or other materials provided with the distribution. 00036 * - Neither the name of the Mercury Engine nor the names of its 00037 * contributors may be used to endorse or promote products derived from 00038 * this software without specific prior written permission. 00039 * 00040 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00041 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00042 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00043 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE 00044 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 00045 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 00046 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00047 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 00048 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 00049 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00050 */