Ejemplo n.º 1
0
 /// <summary>
 // This method is executed when using this.Publish(new NetSetRoomProperties())
 /// </summary>
 public virtual void NetSetRoomPropertiesHandler(NetSetRoomProperties data)
 {
     // Process the commands information.  Also, you can publish new events by using the line below.
     // this.Publish(new AnotherEvent())
 }
Ejemplo n.º 2
0
 public override void NetSetRoomPropertiesHandler(NetSetRoomProperties data)
 {
     base.NetSetRoomPropertiesHandler(data);
     Client.CurrentRoom.SetCustomProperties(data.PropertiesToSet);
 }