using FishNet.Documenting; namespace FishNet.Object.Synchronizing { [APIExclude] public enum SyncHashSetOperation : byte { /// /// An item is added to the collection. /// Add, /// /// An item is removed from the collection. /// Remove, /// /// Collection is cleared. /// Clear, /// /// All operations for the tick have been processed. This only occurs on clients as the server is unable to be aware of when the user is done modifying the list. /// Complete, /// /// An item has been updated within the collection. This is generally used when modifying data within a container. /// Update, } }