wxr
2021-11-19 0edfc730dafa1407efdeb8a6eed4c88c21aa1963
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using HDLSceneSiri;
using ObjCRuntime;
 
namespace Other.Siri
{
    public class HDLRunSceneIntentHandlder : HDLRunSceneIntentHandling
    {
        public HDLRunSceneIntentHandlder()
        {
        }
 
        public override void ConfirmRunScene(HDLRunSceneIntent intent, Action<HDLRunSceneIntentResponse> completion)
        {
            Console.WriteLine("asjdkfasdfa");
 
 
            base.ConfirmRunScene(intent, completion);
        }
 
        public override void HandleRunScene(HDLRunSceneIntent intent,  Action<HDLRunSceneIntentResponse> completion)
        {
            throw new NotImplementedException();
        }
    }
}