Test.cs 431 B

123456789101112131415161718192021222324252627
  1. using CommonServer.RPC;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace CommonRPG.Server.Area
  8. {
  9. public class AreaService : IService
  10. {
  11. public void Init(ServiceStartInfo start)
  12. {
  13. }
  14. public void Start()
  15. {
  16. }
  17. public void Destory()
  18. {
  19. }
  20. }
  21. }