using FishNet.Documenting; namespace FishNet.Object.Synchronizing { [APIExclude] public enum SyncListOperation : byte { /// /// An item is added to the collection. /// Add, /// /// An item is inserted into the collection. /// Insert, /// /// An item is set in the collection. /// Set, /// /// An item is removed from the collection. /// RemoveAt, /// /// 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 } }