This commit is contained in:
JohnCorby 2022-01-07 15:49:00 -08:00
parent 075b917c03
commit 138f1daa4c

View File

@ -29,7 +29,13 @@ namespace QSB.Player
}
public static uint LocalPlayerId => LocalPlayer.PlayerId;
/// <summary>
/// called right after player is added
/// </summary>
public static Action<uint> OnAddPlayer;
/// <summary>
/// called right before player is removed
/// </summary>
public static Action<uint> OnRemovePlayer;
public static readonly List<PlayerInfo> PlayerList = new();