void IMessages.WalkTo(int x, int y)
 {
     if(WalkTo == null) return;
     var v = new RemoteEvents.WalkToArguments { x = x, y = y };
     this.VirtualLatency(() => this.WalkTo(v));
 }
 void IMessages.WalkTo(int[] bytestream)
 {
     if(WalkTo == null) return;
     var v = new RemoteEvents.WalkToArguments { bytestream = bytestream };
     this.VirtualLatency(() => this.WalkTo(v));
 }