hlswmaster-ng/mod_halflife.h

21 lines
376 B
C
Raw Normal View History

2006-02-05 16:44:38 +01:00
#ifndef _MODHALFLIFE_H_
#define _MODHALFLIFE_H_
#include "module.h"
2006-04-16 21:02:41 +02:00
#include "multisock.h"
#include "netpkt.h"
#include "gamelist.h"
2006-02-05 16:44:38 +01:00
class ModHalfLife : public Module {
public:
ModHalfLife() {}
~ModHalfLife() {}
2006-03-05 02:28:19 +01:00
2006-02-05 16:44:38 +01:00
void scan(MultiSock* msock);
2006-02-20 21:58:59 +01:00
int parse(NetPkt* pkt, GameList* glist);
2006-03-05 02:28:19 +01:00
2006-03-07 20:30:11 +01:00
const char* getName() { return "Half-Life protocol"; }
2006-02-05 16:44:38 +01:00
};
#endif // _MODHALFLIFE_H_