hlswmaster-ng/mod_d3engine.h

21 lines
372 B
C
Raw Normal View History

2006-02-05 16:44:38 +01:00
#ifndef _MODD3ENGINE_H_
#define _MODD3ENGINE_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 ModD3Engine : public Module {
public:
ModD3Engine() {}
~ModD3Engine() {}
2006-03-05 02:28:19 +01:00
2006-02-05 16:44:38 +01:00
void scan(MultiSock* msock);
int parse(NetPkt* pkt, GameList* slist);
2006-03-05 02:28:19 +01:00
2006-03-07 20:30:11 +01:00
const char* getName() { return "Doom3 protocol"; }
2006-02-05 16:44:38 +01:00
};
#endif // _MODD3ENGINE_H_