fishbait/UnityProject/Assets/FishNet/Runtime/Managing/Object/DualPrefab.cs
NIMFER bf403a8f97 Ducktaped together a FishNet version of the Transport
Ducktaped together a FishNet version of the Transport, now I need to edit the LoadBalancer and Server so it connects and actually trades information
2022-08-14 03:55:25 +02:00

16 lines
No EOL
338 B
C#

using FishNet.Object;
namespace FishNet.Managing.Object
{
/// <summary>
/// When using dual prefabs, defines which prefab to spawn for server, and which for clients.
/// </summary>
[System.Serializable]
public struct DualPrefab
{
public NetworkObject Server;
public NetworkObject Client;
}
}