11 lines
176 B
C#
11 lines
176 B
C#
using FairyGUI;
|
|
|
|
namespace NBF
|
|
{
|
|
public interface INoticeComponent
|
|
{
|
|
void OnInit(GComponent root);
|
|
void OnUpdate();
|
|
void OnDestroy();
|
|
}
|
|
} |