예제 #1
0
 public Belief(string name, BeliefTypes type)
 {
     Name = name;
     Type = type;
 }
예제 #2
0
 public Belief(BeliefTypes type, bool dominate)
 {
     BeliefType = type;
     Dominate   = dominate;
 }