00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #if !defined( __GAMEITFC_H__ )
00016 #define __GAMEITFC_H__
00017
00018 class GameItfc : public XBox {
00019 private:
00020
00021 Window *ssObject;
00022
00023 public:
00024 GameItfc( void );
00025
00026 virtual ~GameItfc( void );
00027
00028 protected:
00029
00030 virtual const bool SetupWindow( const Message &msg );
00031
00032 virtual const bool evValueChange( const CtrlMessage &msg );
00033 virtual const bool evValueChanging( const CtrlMessage &msg );
00034 virtual const bool evMouseLClick( const CtrlMessage &msg );
00035 };
00036
00037 #endif