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();
| }
| }
| }
|
|