コード例 #1
0
ファイル: Panel.cs プロジェクト: drusepth/Panel
 // Allows developers to add traits that will be combined into
 // personalities.
 // f - A function to run on Object o and return a numerical amount
 //     representing how much this trait would favor the given object,
 //     on a scale of -100 to 100.
 public void AddTrait(LikeabilityFunction func)
 {
     possible_traits.Add(new Trait(func));
 }
コード例 #2
0
ファイル: Panel.cs プロジェクト: drusepth/Panel
 // Allows developers to add traits that will be combined into
 // personalities.
 // f - A function to run on Object o and return a numerical amount
 //     representing how much this trait would favor the given object,
 //     on a scale of -100 to 100.
 public void AddTrait(LikeabilityFunction func)
 {
     possible_traits.Add(new Trait(func));
 }
コード例 #3
0
ファイル: Panel.cs プロジェクト: drusepth/Panel
 public Trait(LikeabilityFunction func)
 {
     foo = func;
 }
コード例 #4
0
ファイル: Panel.cs プロジェクト: drusepth/Panel
 public Trait(LikeabilityFunction func)
 {
     foo = func;
 }