trouble-in-terror-town/Assets/Mirror/Components/NetworkMatch.cs
2022-02-09 21:05:18 +01:00

11 lines
286 B
C#

// simple component that holds match information
using System;
namespace Mirror
{
public class NetworkMatch : NetworkBehaviour
{
///<summary>Set this to the same value on all networked objects that belong to a given match</summary>
public Guid matchId;
}
}