64
1
using System;
2
using System.Collections.Generic;
3
4
namespace HelloWorld_v6
5
{
6
public class Program
7
{
8
public static void Main(string[] args)
9
{
10
var world = new World_v6();
11
world.speak();
12
}
13
}
14
}
15
16
17
18
public class FrameEvent {
19
public FrameEvent(String Msg, Dictionary<String,object> Parameters) {
20
this.Msg = Msg;
21
this.Parameters = Parameters;
22
}
23
public String Msg;
24
public Dictionary<String,Object> Parameters;
Cached Result