mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-22 22:07:59 +01:00
20 lines
356 B
C#
20 lines
356 B
C#
using Fie.Manager;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
|
|
namespace Fie.Title
|
|
{
|
|
public class FieTitleVersionNumberDrawer : MonoBehaviour
|
|
{
|
|
[SerializeField]
|
|
private TextMeshProUGUI _textField;
|
|
|
|
private void Start()
|
|
{
|
|
if (!(_textField == null))
|
|
{
|
|
_textField.text = FieManagerBehaviour<FieEnvironmentManager>.I.getVersionString();
|
|
}
|
|
}
|
|
}
|
|
}
|