Files
Fishing2/Assets/Scripts/UI/Common/Panel/Information/INoticeComponent.cs
Bob.Song 830cf3c354 settings
2026-03-25 17:07:05 +08:00

11 lines
176 B
C#

using FairyGUI;
namespace NBF
{
public interface INoticeComponent
{
void OnInit(GComponent root);
void OnUpdate();
void OnDestroy();
}
}