新增 FlowScope Git 包雏形
This commit is contained in:
12
Packages/com.flowscope.gamecore/Runtime/Flow/IFeature.cs
Normal file
12
Packages/com.flowscope.gamecore/Runtime/Flow/IFeature.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user