00001 #include "Headers.h"
00002 #include "EventClientLeave.h"
00003
00004 CEventClientLeave::CEventClientLeave(CHostClient *host)
00005 {
00006 assert(host);
00007 this->host = host;
00008 }
00009
00010 void CEventClientLeave::Process()
00011 {
00012 this->host->EventLeave();
00013 }