rise-and-swine/Assets/Scripts/Assembly-CSharp/PlayerChangedEvent.cs
2023-02-25 23:04:03 -05:00

9 lines
172 B
C#

public class PlayerChangedEvent : EventManager.Event
{
public PlayerChangedEvent(string playerName)
{
this.playerName = playerName;
}
public string playerName;
}