This repository has been archived on 2023-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
station_obscurum_unity/Assets/FishNet/Runtime/Observing/ObserverStateChange.cs

12 lines
238 B
C#

namespace FishNet.Observing
{
/// <summary>
/// States which observer(s) can change to.
/// </summary>
internal enum ObserverStateChange : byte
{
Unchanged = 0,
Added = 1,
Removed = 2
}
}