public void RegisterMurderProfile(MurderProfile mp) { this.rounds[this.currentRound] = mp; deadCharacter = mp.murderedCharacterID; weapon = ProfileLibrary.GetWeapon(mp.weaponProfileID); location = ProfileLibrary.GetLocation(mp.locationProfileID); discoverer = mp.bodyDiscovererID; }
public string GetMurderLocation() { if (this.locationProfileID == "") { Debug.LogError("This Murder Profile's murder location has not been assigned"); } return(ProfileLibrary.GetLocation(this.locationProfileID)); }
public string GetAnswerText() { if (type == QuestionType.tool) { return(ProfileLibrary.GetWeapon(answerID)); } else if (type == QuestionType.place) { return(ProfileLibrary.GetLocation(answerID)); } else { return(ProfileLibrary.GetOpccupation(answerID)); } }