12345678910111213141516171819202122 |
- using Blue;
- public class PointPosRotDownloadCommand : ICommand
- {
- private int sceneID;
-
-
-
-
- public PointPosRotDownloadCommand(int sceneID)
- {
- this.sceneID = sceneID;
- }
- public void OnExcute()
- {
- this.GetService<IUpOrDownloadService>().GetScenePosRot(sceneID);
- }
- }
|