Files
TEngine/Assets/GameScripts/HotFix/BattleCore/Empty.cs
ALEXTANG b50ef83c4f [+] BattleCore Empty
[+] BattleCore Empty
2023-04-24 22:50:37 +08:00

22 lines
366 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace BattleCore.Runtime
{
public class Empty : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}
}