fgm24/Assets/Scripts/Multiplayer/ZNetworkData.cs

10 lines
250 B
C#
Raw Normal View History

using System.Collections;
using UnityEngine;
namespace Assets.Scripts.Multiplayer
{
public abstract class ZNetworkData : MonoBehaviour
{
public static bool IsServer = false; // Only used during game setup. Do not use after
}
}