예제 #1
0
파일: Teacher.cs 프로젝트: dmacy5/SchoolRPG
 public Character interact(Character them)
 {
     return askQuestion(them);
 }
예제 #2
0
파일: Teacher.cs 프로젝트: dmacy5/SchoolRPG
 public Character askQuestion(Character them)
 {
     Console.WriteLine(getQuestion());
     return them;
 }