BattleInfoPlugin.Models.Squadron.Squadron C# (CSharp) 메소드

Squadron() 공개 메소드

public Squadron ( Api_Squadron_Plane squadron ) : System
squadron BattleInfoPlugin.Models.Raw.Api_Squadron_Plane
리턴 System
        public Squadron(Api_Squadron_Plane squadron)
        {
            this.Plane = KanColleClient.Current.Master.SlotItems[squadron.api_mst_id];
            this.Count = squadron.api_count;
            this.Max = this.Plane != null ? 12 : 0;
        }
Squadron