Add StickGame Assets

This commit is contained in:
Dzejkobik007
2024-03-24 22:21:16 +01:00
parent 5a5812c0c7
commit 6c8b523d1f
6643 changed files with 596260 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
using FishNet.Documenting;
namespace FishNet.Transporting
{
/// <summary>
/// PacketIds to indicate the type of packet which is being sent or arriving.
/// </summary>
[APIExclude]
public enum PacketId : ushort
{
Unset = 0,
Authenticated = 1,
Split = 2,
ObjectSpawn = 3,
ObjectDespawn = 4,
PredictedSpawnResult = 5,
SyncVar = 7,
ServerRpc = 8,
ObserversRpc = 9,
TargetRpc = 10,
OwnershipChange = 11,
Broadcast = 12,
SyncObject = 13,
PingPong = 14,
Replicate = 15,
Reconcile = 16,
Disconnect = 17,
TimingUpdate = 18,
NetworkLODUpdate = 19,
StateUpdate = 20,
}
}