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