コード例 #1
0
ファイル: Inscription.cs プロジェクト: genveir/RunicMagic
 public Inscription(long id, TargetingKeyword[] targetingKeywords, string shortDesc, string longDesc, string lookDesc, RunePhrase inscribedSpell)
 {
     Id = id;
     TargetingKeywords = targetingKeywords;
     Description       = new Description(shortDesc, longDesc, lookDesc);
     InscribedSpell    = inscribedSpell;
 }
コード例 #2
0
ファイル: Spell.cs プロジェクト: genveir/RunicMagic
 public Spell(RunePhrase root)
 {
     this.root = root;
 }
コード例 #3
0
 public abstract EvalResult Eval(RunePhrase sn);