16 lines
341 B
C#
16 lines
341 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
|
|
namespace BITKit
|
|
{
|
|
public class ShowVersion : MonoBehaviour
|
|
{
|
|
[SerializeField] private UnityEvent<string> output;
|
|
private void Start()
|
|
{
|
|
output?.Invoke(Application.version);
|
|
}
|
|
}
|
|
} |