BlockChangedUpdate.h 308 B

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