Health/Assets/Scripts/UI/Component/TestManager.cs

19 lines
323 B
C#
Raw Normal View History

2023-11-24 18:39:53 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TestManager : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
CVEstimator.Instance.Init();
}
// Update is called once per frame
void Update()
{
}
}