コード例 #1
0
ファイル: RewardEntry.cs プロジェクト: uotools/xrunuo
 public ConditionalRewardEntry(Type type, int price, int cliloc, int tile, int hue, OnRewardChosen onRewardChosen, RewardChecker checker)
     : base(type, price, cliloc, 0, null, tile, hue, onRewardChosen)
 {
     m_Checker = checker;
 }
コード例 #2
0
ファイル: RewardEntry.cs プロジェクト: uotools/xrunuo
 public ConditionalRewardEntry(Type type, int price, int cliloc, int tile, int hue, RewardChecker checker)
     : this(type, price, cliloc, tile, hue, null, checker)
 {
 }