定义 Game Core P0 共享契约

This commit is contained in:
JSD\13999
2026-05-15 15:57:30 +08:00
parent 76c35d8d99
commit 49318c50a4
45 changed files with 527 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace FlowScope.Config
{
public interface IConfigProvider
{
Task LoadAllAsync(CancellationToken cancellationToken);
T Get<T>(int id) where T : class, IConfigRow;
IReadOnlyList<T> GetAll<T>() where T : class, IConfigRow;
}
}