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/Object/NetworkObjectState.cs

25 lines
555 B
C#

namespace FishNet.Object
{
/// <summary>
/// Current state of the NetworkObject.
/// </summary>
internal enum NetworkObjectState : byte
{
/// <summary>
/// State has not been set. This occurs when the object has never been spawned or despawned.
/// </summary>
Unset = 0,
/// <summary>
/// Object is currently spawned.
/// </summary>
Spawned = 1,
/// <summary>
/// Object is currently despawned.
/// </summary>
Despawned = 2,
}
}