Files
FlowScope/Packages/com.flowscope.gamecore/Runtime/Flow/IFeature.cs
2026-06-04 14:54:49 +08:00

13 lines
275 B
C#

using System;
using System.Threading.Tasks;
namespace FlowScope.Flow
{
public interface IFeature : IDisposable
{
Task LoadAsync(FeatureContext context);
Task EnterAsync(FeatureContext context);
Task ExitAsync(FeatureContext context);
}
}