hlswmaster-ng/mod_d3engine.h

18 lines
307 B
C
Raw Normal View History

2006-02-05 16:44:38 +01:00
#ifndef _MODD3ENGINE_H_
#define _MODD3ENGINE_H_
#include "module.h"
class ModD3Engine : public Module {
public:
ModD3Engine() {}
~ModD3Engine() {}
void scan(MultiSock* msock);
int parse(NetPkt* pkt, GameList* slist);
const char* getName() { return "Doom3 engine"; }
};
#endif // _MODD3ENGINE_H_