예제 #1
0
파일: Shoot.cs 프로젝트: war-man/Mafia.NET
 public TargetNotification UserMessage()
 {
     return(Match.Phase.Day == 1
         ? new TargetNotification
     {
         UserAddMessage = target =>
         {
             Targets.ForceSet(null);
             return Notification.Chat(Role, ShootKey.FirstNight);
         }
     }
         : TargetNotification.Enum <ShootKey>(this));
 }