AddChunkUpdate.h 277 B

1234567891011121314
  1. #pragma once
  2. #include "WorldUpdate.h"
  3. class AddChunkUpdateType : WorldUpdateType
  4. {
  5. REGISTRABLE(AddChunkUpdateType)
  6. protected:
  7. AddChunkUpdateType();
  8. void applyUpdate(Framework::StreamReader* zReader) override;
  9. };
  10. REGISTER(AddChunkUpdateType, WorldUpdateType)