#pragma once #include "WorldUpdate.h" class AddChunkUpdateType : WorldUpdateType { REGISTRABLE( AddChunkUpdateType ) protected: AddChunkUpdateType(); public: void applyUpdate( Framework::StreamReader *zReader ) override; }; REGISTER( AddChunkUpdateType, WorldUpdateType )