NetworkExampleService.cs 305 B

1234567891011121314151617
  1. using UnityEngine;
  2. namespace QFramework.Example
  3. {
  4. public interface INetworkExampleService
  5. {
  6. void Request();
  7. }
  8. public class NetworkExampleService : INetworkExampleService
  9. {
  10. public void Request()
  11. {
  12. Debug.Log("请求服务器");
  13. }
  14. }
  15. }