[Add] FishNet

This commit is contained in:
2026-03-30 20:11:57 +07:00
parent ee793a3361
commit c22c08753a
1797 changed files with 197950 additions and 1 deletions
@@ -0,0 +1,29 @@
using FishNet.Documenting;
namespace FishNet.Object.Synchronizing
{
[APIExclude]
public enum SyncHashSetOperation : byte
{
/// <summary>
/// An item is added to the collection.
/// </summary>
Add,
/// <summary>
/// An item is removed from the collection.
/// </summary>
Remove,
/// <summary>
/// Collection is cleared.
/// </summary>
Clear,
/// <summary>
/// An item has been updated within the collection. This is generally used when modifying data within a container.
/// </summary>
Set,
/// <summary>
/// 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.
/// </summary>
Complete
}
}