NoEnterRoomCommand.cs 270 B

1234567891011121314
  1. using Blue;
  2. public struct NoEnterRoomCommand : ICommand
  3. {
  4. private int mUserID;
  5. public NoEnterRoomCommand(int UserID)
  6. {
  7. mUserID = UserID;
  8. }
  9. public void OnExcute()
  10. {
  11. this.SendEvent(new NoEnterRoomEvent(){UserID = mUserID});
  12. }
  13. }