示例#1
0
文件: Human.cs 项目: etheilred/MThree
 public void OnRingIsFound(object sender, RingIsFoundEventArgs e)
 {
     Console.WriteLine($"{Name} >> Wisard {((Wizard)sender).Name} has summoned. I am aimed at {e.Message}");
 }
示例#2
0
 public void OnRingIsFound(object sender, RingIsFoundEventArgs e)
 {
     Console.WriteLine($"{Name} >> Leaving Shire! Coming to {e.Message}");
 }
示例#3
0
 public void OnRingIsFound(object sender, RingIsFoundEventArgs e)
 {
     Console.WriteLine($"{Name} >> Rush {e.Message}!!!, I am not in {Location}");
     Location = e.NewLoc;
 }
示例#4
0
文件: Elf.cs 项目: etheilred/MThree
 public void OnRingIsFound(object sender, RingIsFoundEventArgs e)
 {
     Console.WriteLine($"{Name} >> Stars are leaves push to go to {e.Message}");
 }