少年修仙传客户端代码仓库
lcy
2024-12-16 a39c35fc6449430cd02bccb681c4a0a880e46cd9
提交 | 用户 | age
eb222a 1 using System.Collections;
CX 2 using System.Collections.Generic;
3 using UnityEngine;
4
5
4465b6 6 namespace vnxbqy.UI
eb222a 7 {
CX 8     public class EquipStarSuccessModel : Model
9     {
10         public Int2 equipPosition { get; private set; }
11         public int star { get; private set; }
12
13         public override void Init()
14         {
15         }
16
17         public override void UnInit()
18         {
19         }
20
21         public void Show(Int2 equipPosition, int star)
22         {
23             this.equipPosition = equipPosition;
24             this.star = star;
25             WindowCenter.Instance.Open<EquipStarSuccessWin>();
26         }
27
28
29     }
30
31 }