15 lines
196 B
C#
15 lines
196 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class GameVersion : MonoBehaviour
|
|
{
|
|
private void Start()
|
|
{
|
|
GetComponent<Text>().text = Application.version;
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
}
|
|
}
|