1
This commit is contained in:
@@ -1,15 +1,16 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using UnityEngine.Events;
|
||||
|
||||
namespace BITKit
|
||||
{
|
||||
public class ShowVersion : MonoBehaviour
|
||||
{
|
||||
[SerializeField,SerializeReference,SubclassSelector] private IProvider output;
|
||||
[SerializeField] private UnityEvent<string> output;
|
||||
private void Start()
|
||||
{
|
||||
output?.Set(Application.version);
|
||||
output?.Invoke(Application.version);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user