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