示例#1
0
 protected virtual void OnGameEnded(BoggleConnection conn)
 {
     if (GameEnded != null)
     {
         GameEnded(conn);
     }
 }
示例#2
0
 /// <summary>
 /// Calls any methods which have registered to be notified of ScoreChanged events
 /// </summary>
 protected virtual void OnScoreChanged(BoggleConnection conn)
 {
     if (ScoreChanged != null)
     {
         ScoreChanged(conn);
     }
 }
示例#3
0
 protected virtual void OnServerLost(BoggleConnection conn)
 {
     if (ServerLost != null)
     {
         ServerLost(conn);
     }
 }
示例#4
0
 /// <summary>
 /// Calls any methods which have registered to be notified of TimeChanged events
 /// </summary>
 protected virtual void OnTimeChanged(BoggleConnection conn)
 {
     if (TimeChanged != null)
     {
         TimeChanged(conn);
     }
 }