| | |
| | | using System.Collections; |
| | | using System.Collections; |
| | | using System.Collections.Generic; |
| | | using UnityEngine; |
| | | using UnityEngine.UI; |
| | |
| | | |
| | | changeEmblemBtn.AddListener(() => |
| | | { |
| | | UIManager.Instance.OpenWindow<GuildEmblemWin>(); |
| | | UIManager.Instance.OpenWindowAsync<GuildEmblemWin>().Forget(); |
| | | }); |
| | | |
| | | changeNameBtn.AddListener(() => |
| | |
| | | SysNotifyMgr.Instance.ShowTip("GuildSys16"); |
| | | return; |
| | | } |
| | | UIManager.Instance.OpenWindow<GuildChangeNameWin>(); |
| | | UIManager.Instance.OpenWindowAsync<GuildChangeNameWin>().Forget(); |
| | | }); |
| | | |
| | | quitBtn.AddListener(() => |
| | |
| | | |
| | | noteBtn.AddListener(() => |
| | | { |
| | | UIManager.Instance.OpenWindow<GuildNoteWin>(); |
| | | UIManager.Instance.OpenWindowAsync<GuildNoteWin>().Forget(); |
| | | }); |
| | | |
| | | } |