LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/PlayerStats.cs
2023-12-22 18:30:10 -05:00

20 lines
299 B
C#

using System;
using System.Collections.Generic;
[Serializable]
public class PlayerStats
{
public int profitable;
public int turnAmount;
public int jumps;
public int stepsTaken;
public int damageTaken;
public bool isActivePlayer;
public List<string> playerNotes = new List<string>();
}