Liberi
An exergame built for kids with CP!
PlayerDataChange.cs
1 using UnityEngine;
2 using System;
3 using System.Collections;
4 using System.Collections.Generic;
5 using System.Linq;
6 using Lidgren.Network;
7 using Janus;
8 using LiberiNet;
9 
13 public struct PlayerDataChange
14 {
18  public string PlayerID;
22  public string TablePath;
26  public string PropertyName;
30  public string PropertyValue;
31 }
string PropertyName
The name of the property to change.
Describes a single change to a player's persistent data.
string PlayerID
The ID of the player whose data to change.
string TablePath
The path of the data table to change.
string PropertyValue
The desired new value of the property.