EntityRemovedUpdate.h 306 B

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