WorldPackets.h 221 B

1234567891011
  1. #ifndef WORLD_PACKETS_H
  2. #define WORLD_PACKETS_H
  3. #include "common/world/World.h"
  4. #include "server/entities/ServerPlayer.h"
  5. namespace WorldPackets {
  6. void sendChunk(ServerPlayer& p, World& w, int cx, int cz);
  7. }
  8. #endif