DownloadCommand.cs 396 B

12345678910111213141516171819
  1. using Blue;
  2. using System;
  3. using System.Collections.Generic;
  4. /// <summary>
  5. /// ÏÂÔØÒƶ¯³¡¾°µÄPostion¡¢Rotatiuon
  6. /// </summary>
  7. public class DownloadCommand : ICommand
  8. {
  9. private string Url;
  10. public DownloadCommand(string Url )
  11. {
  12. this.Url = Url;
  13. }
  14. public void OnExcute()
  15. {
  16. this.GetService<IUpOrDownloadService>().GetScenePosRot(Url);
  17. }
  18. }