1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef INTERFACE_GATS_H #define INETRFACE_GATS_H #include "interface.h" class InterfaceGats : public Interface { public: InterfaceGats(); virtual ~InterfaceGats(); virtual void run( class Game *pGame ); virtual void display( const class SmlNode *pSml ); }; #endif