We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 448f87c commit 8369675Copy full SHA for 8369675
1 file changed
src/InEngine.Core/Commands/Lambda.cs
@@ -0,0 +1,13 @@
1
+using System;
2
+
3
+namespace InEngine.Core.Commands
4
+{
5
+ public class Lambda : AbstractCommand
6
+ {
7
+ public Action Action { get; set; }
8
+ public override void Run()
9
10
+ Action.Invoke();
11
+ }
12
13
+}
0 commit comments