提交修改

This commit is contained in:
Bob.Song
2026-03-06 09:44:00 +08:00
parent e125bb869e
commit db7bc90fe2
3631 changed files with 9050 additions and 395938 deletions

View File

@@ -1,24 +0,0 @@
using System;
using System.Collections.Generic;
using UnityEngine;
namespace FairyGUI.Utils
{
/// <summary>
/// Create->SetPosition->(Add<->Remove)->Release->Dispose
/// </summary>
public interface IHtmlObject
{
float width { get; }
float height { get; }
DisplayObject displayObject { get; }
HtmlElement element { get; }
void Create(RichTextField owner, HtmlElement element);
void SetPosition(float x, float y);
void Add();
void Remove();
void Release();
void Dispose();
}
}