Files
RedHotRoast-ios/Assets/GemCrush/Plugins/FairyGUI/Scripts/Utils/Html/IHtmlPageContext.cs
T

16 lines
362 B
C#
Raw Normal View History

2026-04-22 09:52:55 +08:00
namespace FairyGUI.Utils
{
/// <summary>
///
/// </summary>
public interface IHtmlPageContext
{
IHtmlObject CreateObject(RichTextField owner, HtmlElement element);
void FreeObject(IHtmlObject obj);
NTexture GetImageTexture(HtmlImage image);
void FreeImageTexture(HtmlImage image, NTexture texture);
}
}