1234567891011121314151617181920212223242526272829303132 |
- namespace Fort23.Mono
- {
- [UIBinding(prefab = "RedDotCom")]
- public partial class RedDotCom : UIComponent
- {
- private void Init()
- {
- }
- public override void AddEvent()
- {
- }
- public override void DelEvent()
- {
- }
- public void CustomInit(int redDotConfigID)
- {
- RedDotWidget.CustomInit(redDotConfigID);
- }
- public override void AddButtonEvent()
- {
- }
- public override void Dispose()
- {
- base.Dispose();
- }
- }
- }
|