public Belief(string name, BeliefTypes type) { Name = name; Type = type; }
public Belief(BeliefTypes type, bool dominate) { BeliefType = type; Dominate = dominate; }