using System; using HDLSceneSiri; using ObjCRuntime; //using HdlSiri; namespace SiriKit { public class HDLRunSceneIntentHandlder : HDLRunSceneIntentHandling { public override void HandleHDLRunScene(HDLRunSceneIntent intent, Action completion) { var rsp = new HDLRunSceneIntentResponse(HDLRunSceneIntentResponseCode.InProgress, null); completion(rsp); } public override void ConfirmHDLRunScene(HDLRunSceneIntent intent,Action completion) { completion(new HDLRunSceneIntentResponse(HDLRunSceneIntentResponseCode.Success, null)); } } }