This repository has been archived on 2025-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2024-03-24 22:21:16 +01:00

16 lines
353 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;
}
}