namespace FishNet.Object.Prediction { public interface IReplicateData { /// /// Local tick when the data was created. /// /// uint GetTick(); /// /// Sets the local tick when data was created. /// /// void SetTick(uint value); /// /// Allows for any cleanup when the data is being discarded. /// void Dispose(); } public interface IReconcileData { /// /// Local tick when the data was created. /// /// uint GetTick(); /// /// Sets the local tick when data was created. /// /// void SetTick(uint value); /// /// Allows for any cleanup when the data is being discarded. /// void Dispose(); } }