static void Main(string[] args)
        {
            Wincon wincon   = new Wincon();
            string jsonpath = args.Length > 0 ? args[0] : "processes.json";

            wincon.Gogo(jsonpath);
        }
Beispiel #2
0
        public MafiaRole(String title = "vanilla", String description = "The vanilla towny with no actual powers.", Allignment allignment = Allignment.Town, Wincon wincon = Wincon.DefeatMafia, string rolePM = "")
        {
            this.allignment  = allignment;
            this.wincon      = wincon;
            this.Title       = title;
            this.description = description;
            this.rolePM      = rolePM;

            canVote = true; canVoteNow = false;
        }