AddChunkUpdate.h 303 B

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