BattleInfoPlugin.Models.Squadron.Squadron C# (CSharp) Method

Squadron() public method

public Squadron ( Api_Squadron_Plane squadron ) : System
squadron BattleInfoPlugin.Models.Raw.Api_Squadron_Plane
return 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