BlockChangedUpdate.h 319 B

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