RoleSproxy.cs 572 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using ET;
  6. namespace GFGGame
  7. {
  8. public static class RoleSproxy
  9. {
  10. public static async ETTask ResetDailyData()
  11. {
  12. M2C_ResetDailyData response = null;
  13. response = (M2C_ResetDailyData)await MessageHelper.SendToServer(new C2M_ResetDailyData());
  14. if (response != null)
  15. {
  16. if (response.Error == ErrorCode.ERR_Success)
  17. {
  18. }
  19. }
  20. }
  21. }
  22. }