zombie_mp/Assets/Mirror/Components/NetworkMatch.cs
Sewmina Dilshan 68183e5317 initial
2021-08-23 13:28:33 +05:30

12 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;
}
}