using FairyGUI; using XGame.Framework.Asyncs; namespace XGame.Framework.FGUI { public interface IGObjectLoadAsync : IAsync { string PackageName { get; } string ObjectName { get; } GObject Result { get; } void Start(); } }