9 lines
172 B
C#
9 lines
172 B
C#
public class PlayerChangedEvent : EventManager.Event
|
|
{
|
|
public PlayerChangedEvent(string playerName)
|
|
{
|
|
this.playerName = playerName;
|
|
}
|
|
|
|
public string playerName;
|
|
}
|