예제 #1
0
파일: Thing.cs 프로젝트: Totokis/TextRPG
 public RPGTag FindTagInList(RPGTag RPGtag)
 {
     return(listOfRPGTags.Find(thingThatYouLookingFor => thingThatYouLookingFor.Name == RPGtag.Name));
 }
예제 #2
0
파일: Thing.cs 프로젝트: Totokis/TextRPG
 public void UseTag(RPGTag tag, Character character)
 {
     tag.DoSomething(character);
 }