12345678910111213141516171819 |
- using Blue;
- using System;
- using System.Collections.Generic;
- /// <summary>
- /// ÏÂÔØÒƶ¯³¡¾°µÄPostion¡¢Rotatiuon
- /// </summary>
- public class DownloadCommand : ICommand
- {
- private string Url;
- public DownloadCommand(string Url )
- {
- this.Url = Url;
- }
- public void OnExcute()
- {
- this.GetService<IUpOrDownloadService>().GetScenePosRot(Url);
- }
- }
|