WorldPackets.h 191 B

1234567891011
  1. #ifndef WORLD_PACKETS_H
  2. #define WORLD_PACKETS_H
  3. #include "common/world/World.h"
  4. #include "network/Packet.h"
  5. namespace WorldPackets {
  6. void receiveChunk(World& w, InPacket& in);
  7. }
  8. #endif