This commit is contained in:
CortexCore
2024-05-31 01:23:15 +08:00
parent c798b224be
commit 299082fe27
164 changed files with 3604 additions and 2018 deletions

View File

@@ -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);
}
}
}