public static void AddPlayToCurrentGame(PlayType play, int turn, string cardId) { if (CurrentGameStats == null) { return; } CurrentGameStats.AddPlay(play, turn, cardId); }