Skip to content
Snippets Groups Projects
ServerSlotComponent.cs 315 B
Newer Older
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class ServerSlotComponent : MonoBehaviour
{
    /// <summary>
    /// Unity cannot just deal with Enums as values for buttons, so this is the workaround
    /// </summary>
    public CommunicationEvents.ServerSlot serverSlot;
}