mirror of
https://github.com/Dadechin/Unity-WebSocket.git
synced 2025-07-03 20:04:33 +00:00
16 lines
382 B
C#
16 lines
382 B
C#
namespace FishNet.Serializing
|
|
{
|
|
[System.Flags]
|
|
public enum DeltaSerializerOption : ulong
|
|
{
|
|
Unset = 0,
|
|
FullSerialize = 1,
|
|
RootSerialize = 2,
|
|
}
|
|
|
|
public static class DeltaSerializerOptionExtensions
|
|
{
|
|
public static bool FastContains(this DeltaSerializerOption whole, DeltaSerializerOption part) => (whole & part) == part;
|
|
|
|
}
|
|
} |