コード例 #1
0
ファイル: Gurpenator.cs プロジェクト: thejoshwolfe/Gurpenator
 public UnaryPrefix(SymbolToken operator_, Formula operand)
 {
     this.operator_ = operator_;
     this.operand = operand;
 }
コード例 #2
0
ファイル: Gurpenator.cs プロジェクト: thejoshwolfe/Gurpenator
 public Advantage(ParsedThing parsedThing, Formula costFormula)
     : base(parsedThing)
 {
     this.costFormula = costFormula;
 }
コード例 #3
0
ファイル: Gurpenator.cs プロジェクト: thejoshwolfe/Gurpenator
 protected Effect(GurpsProperty owner, string traitName, Formula formula, ParsedThing parsedThing)
 {
     this.owner = owner;
     this.traitName = traitName;
     this.formula = formula;
     this.parsedThing = parsedThing;
 }
コード例 #4
0
ファイル: Gurpenator.cs プロジェクト: thejoshwolfe/Gurpenator
 public Conditional(SymbolToken ifToken, Formula condition, Formula thenPart)
     : base(ifToken)
 {
     this.condition = condition;
     this.thenPart = thenPart;
 }
コード例 #5
0
ファイル: Gurpenator.cs プロジェクト: thejoshwolfe/Gurpenator
 public CostModifier(GurpsProperty owner, string traitName, Formula formula, ParsedThing parsedThing)
     : base(owner, traitName, formula, parsedThing)
 {
 }
コード例 #6
0
ファイル: Gurpenator.cs プロジェクト: thejoshwolfe/Gurpenator
 public BooleanAdvantage(ParsedThing parsedThing, Formula costFormula)
     : base(parsedThing, costFormula)
 {
     formattingFunction = intToBoolFormattingFunction;
 }
コード例 #7
0
ファイル: Gurpenator.cs プロジェクト: thejoshwolfe/Gurpenator
 public Skill(ParsedThing parsedThing, SkillDifficulty difficulty, Formula formula)
     : base(parsedThing)
 {
     this.difficulty = difficulty;
     this.formula = formula;
 }
コード例 #8
0
ファイル: Gurpenator.cs プロジェクト: thejoshwolfe/Gurpenator
 public AttributeFunction(ParsedThing parsedThing, Formula formula)
     : base(parsedThing)
 {
     this.formula = formula;
 }
コード例 #9
0
ファイル: Gurpenator.cs プロジェクト: thejoshwolfe/Gurpenator
 public IntAdvantage(ParsedThing parsedThing, Formula costFormula)
     : base(parsedThing, costFormula)
 {
 }