예제 #1
0
 // Replace "{name}"s with the NPCs first name
 public string FormattedDisplayText(NPC npc)
 {
     if (npc.charName == null)
     {
         return(DisplayText);
     }
     return(DisplayText.Replace("{name}", npc.charName.Item1));
 }