21 lines
299 B
C#
21 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>();
|
||
|
}
|