// create a list of questions asked


    public void Awake()
    {
        if (Instance == null)
        {
            Instance        = this;
            this.characters = CharacterLibrary.LoadCharacters();
            ProfileLibrary.AssignProfiles(this.characters.Values.ToList());
            CharacterLibrary.AssignAffinities(characters.Values.ToList());
            debugs            = new InspectorCharacter[7];
            this.rounds       = new MurderProfile[3];
            this.currentRound = 0;

            askedQuestions = new List <AskedQuestion>();
        }
    }