forked from ZeraGmbH/Blockly.Net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScriptEngineNotifyMethods.cs
More file actions
55 lines (47 loc) · 1.35 KB
/
ScriptEngineNotifyMethods.cs
File metadata and controls
55 lines (47 loc) · 1.35 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
namespace BlocklyNet.Scripting.Engine;
/// <summary>
///
/// </summary>
/// <param name="method"></param>
public sealed class ScriptEngineNotifyMethods(string method)
{
/// <summary>
///
/// </summary>
public readonly string Method = method;
/// <summary>
///
/// </summary>
/// <returns></returns>
public static readonly ScriptEngineNotifyMethods Current = new("ActiveScript");
/// <summary>
///
/// </summary>
/// <returns></returns>
public static readonly ScriptEngineNotifyMethods InputRequest = new("InputRequest");
/// <summary>
///
/// </summary>
/// <returns></returns>
public static readonly ScriptEngineNotifyMethods Progress = new("ScriptProgress");
/// <summary>
///
/// </summary>
/// <returns></returns>
public static readonly ScriptEngineNotifyMethods Started = new("ScriptStarted");
/// <summary>
///
/// </summary>
/// <returns></returns>
public static readonly ScriptEngineNotifyMethods Done = new("ScriptDone");
/// <summary>
///
/// </summary>
/// <returns></returns>
public static readonly ScriptEngineNotifyMethods Error = new("ScriptError");
/// <summary>
///
/// </summary>
/// <returns></returns>
public static readonly ScriptEngineNotifyMethods Finished = new("ScriptFinished");
}