Newer
Older
BlackoutClient / Assets / Best HTTP / Examples / Helpers / SelectorUI / Category.cs
@Mark Mark on 30 Jan 2020 442 bytes Added Best HTTP 2 plugin
using System;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

namespace BestHTTP.Examples.Helpers.SelectorUI
{
    public sealed class Category : MonoBehaviour
    {
#pragma warning disable 0649

        [SerializeField]
        private Text _text;

#pragma warning restore

        public void SetLabel(string category)
        {
            this._text.text = category;
        }
    }
}