still a lot of stuff to fix before everything works as it should. compilation works, linking produces errors. most code cleanups done.
10 lines
242 B
Plaintext
10 lines
242 B
Plaintext
#ifndef _WORLDPACKETHANDLER_H
|
|
#define _WORLDPACKETHANDLER_H
|
|
|
|
#include <string>
|
|
#include "Auth/ByteBuffer.h"
|
|
void HandleWorldPacket(ByteBuffer);
|
|
void HandleOpcode(uint16,ByteBuffer&);
|
|
void SendWorldPacket(uint16, ByteBuffer*);
|
|
|
|
#endif |