00001 #ifndef KEEPALIVE_SERVER_H 00002 #define KEEPALIVE_SERVER_H 00003 00004 #include "server.h" 00005 00006 class AGS::World; 00007 00008 class KeepaliveServer : public AGS::Server 00009 { 00010 public: 00011 KeepaliveServer(); 00012 ~KeepaliveServer(); 00013 00014 private: 00015 AGS::World *createWorld(int id); 00016 }; 00017 00018 #endif 00019