| | |
| | | get { return wait; }
|
| | | set { wait = value; }
|
| | | }
|
| | | public bool isOpenPanel = true;
|
| | | public bool IsOpenPanel
|
| | | {
|
| | | get { return isOpenPanel; }
|
| | | set { isOpenPanel = value; }
|
| | | }
|
| | | public override void Init()
|
| | | {
|
| | | var AuctionTaxrateConfig = FuncConfigConfig.Get("AuctionTaxrate");
|
| | |
| | | bool isBool = false;
|
| | | string equipGuid = string.Empty;
|
| | | var equipSet = equipModel.GetEquipSet(equipLevel);
|
| | | if (equipSet == null)
|
| | | {
|
| | | return false;
|
| | | }
|
| | | equipGuid = equipSet.GetEquip(equipPlace);
|
| | | isBool = !string.IsNullOrEmpty(equipGuid);
|
| | | return isBool;
|