12345678910 |
- using XGame.Framework.Asyncs;
- namespace XGame.Framework.Map
- {
- public interface IEntityViewLoadAsync<TEntityView> : IAsync where TEntityView : class, IEntityView, new()
- {
- public string AddressableName { get; }
- public TEntityView Result { get; }
- }
- }
|