Files
Temp.BattleRoyale.Map.Unity/Assets/HPA/Scripts/InitManager/IInitable.cs
CortexCore a379dc5cd3 1
2024-05-13 01:28:33 +08:00

11 lines
191 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace HP.Generics
{
public interface IInitable
{
bool IsInitDone() { return true; }
}
}