| 
									
										
										
										
											2022-07-04 11:17:39 +00:00
										 |  |  |  | using System.Collections; | 
					
						
							|  |  |  |  | using System.Collections.Generic; | 
					
						
							|  |  |  |  | using UnityEngine; | 
					
						
							|  |  |  |  | using UnityEngine.UI; | 
					
						
							|  |  |  |  | using DG.Tweening; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  | namespace MMO | 
					
						
							|  |  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-09-09 14:35:49 +00:00
										 |  |  |  |     public class MMOUIHelp : MMOUIPop | 
					
						
							| 
									
										
										
										
											2022-07-04 11:17:39 +00:00
										 |  |  |  |     { | 
					
						
							|  |  |  |  |         [SerializeField] Button mBtnContact; | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         protected override void OnInit() | 
					
						
							|  |  |  |  |         { | 
					
						
							|  |  |  |  |             base.OnInit(); | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |             BindBtn(mBtnContact, OnClickContact); | 
					
						
							|  |  |  |  |         } | 
					
						
							|  |  |  |  | 
 | 
					
						
							|  |  |  |  |         private void OnClickContact() | 
					
						
							|  |  |  |  |         { | 
					
						
							| 
									
										
										
										
											2022-09-09 14:35:49 +00:00
										 |  |  |  |             Application.OpenURL(string.Format("mailto:{0}?subject={1}", MMOConstConfig.Instance.EMail, Application.productName.Replace(" ", "")));  | 
					
						
							| 
									
										
										
										
											2022-07-04 11:17:39 +00:00
										 |  |  |  |         } | 
					
						
							|  |  |  |  |     } | 
					
						
							|  |  |  |  | } |