FM/Assets/Scripts/Base/Produce/IProcedure.cs

13 lines
224 B
C#
Raw Normal View History

2025-04-26 21:05:13 +08:00
using System;
namespace HK
{
public interface IProcedure
{
2025-07-02 10:24:01 +08:00
string procedureType { get; }
2025-04-26 21:05:13 +08:00
void Init();
void OnEnter();
void OnUpdate(float dateTime);
void OnLeave();
}
}