﻿using UnityEngine;
using UnityEngine.UI;

namespace JLGames.RocketDriver.Samples.ServiceDemo
{
    public class ServiceNameNode : MonoBehaviour
    {
        [SerializeField] private Text m_TextName;

        public void SetName(string serviceName)
        {
            m_TextName.text = serviceName;
        }
    }
}