CombatPanel.cs 508 B

12345678910111213141516171819202122232425262728
  1. namespace Fort23.Mono
  2. {
  3. [UIBinding(prefab = "CombatPanel")]
  4. public partial class CombatPanel : UIPanel
  5. {
  6. private void Init()
  7. {
  8. }
  9. protected override void AddEvent()
  10. {
  11. }
  12. protected override void DelEvent()
  13. {
  14. }
  15. public override void AddButtonEvent()
  16. {
  17. bnt_shengShi.onClick.AddListener(Bnt_shengShi_onClick);
  18. }
  19. private void Bnt_shengShi_onClick()
  20. {
  21. }
  22. }
  23. }