12345678910111213141516171819202122232425262728293031323334 |
- using Excel2Json;
- using Fort23.UTool;
- namespace Fort23.Mono
- {
- [UIBinding(prefab = "BigMapWidget" )]
- public partial class BigMapWidget : ItemWidgetBasic
- {
- public BigMapConfig bigMap;
- private void Init()
- {
- }
- public override void AddEvent()
- {
- }
- public override void DelEvent()
- {
- }
- public override void AddButtonEvent()
- {
- base.AddButtonEvent();
- }
- public void CustomInit(int bigMapId)
- {
- bigMap = ConfigComponent.Instance.Get<BigMapConfig>(bigMapId);
- }
- }
- }
|