Beispiel #1
0
 public DropAssetPattern(float MinRange, float MaxRange, DropBoxType DropBoxType, MasterDataMng.AssetCategory DropAssetType, int DropNumber)
 {
     this._minRange      = MinRange;
     this._maxRange      = MaxRange;
     this._dropBoxType   = DropBoxType;
     this._dropAssetType = DropAssetType;
     this._dropNumber    = DropNumber;
 }
 public ItemDropResult(bool isDropped)
 {
     this._dropBoxType = DropBoxType.Normal;
     this._isDropped   = isDropped;
 }
 public ItemDropResult(DropBoxType dropBoxType)
 {
     this._isDropped   = true;
     this._dropBoxType = dropBoxType;
 }