16 lines
290 B
C#
16 lines
290 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
|
|
namespace AibisDream.Kit
|
|
{
|
|
public class VerText : MonoBehaviour
|
|
{
|
|
void Start()
|
|
{
|
|
GetComponent<TMP_Text>().text = $"Ver.{Application.version}";
|
|
}
|
|
}
|
|
}
|