public PlayerStats(string playerName, PokerClient client, TableType tableType, int vpipPositive, int vpipTotal, ActionStats[] preFlopAD, ActionStats[] postFlopAD) { PlayerName = playerName; Client = client; _tableType = tableType; VPIP = new StatValue(vpipPositive, vpipTotal); _allPreFlopParams = PreFlopParams.getAllParams(tableType); _allPostFlopParams = PostFlopParams.getAllParams(tableType); PreFlopStats = preFlopAD; PostFlopStats = postFlopAD; }
public PlayerStats(string playerName, PokerClient client, TableType tableType) { PlayerName = playerName; Client = client; _tableType = tableType; VPIP = new StatValue(); _allPreFlopParams = PreFlopParams.getAllParams(_tableType); _allPostFlopParams = PostFlopParams.getAllParams(_tableType); PreFlopStats = new ActionStats[_allPreFlopParams.Count]; PostFlopStats = new ActionStats[_allPostFlopParams.Count]; for (int i = 0; i < PreFlopStats.Length; i++) { PreFlopStats[i] = new ActionStats(); } for (int i = 0; i < PostFlopStats.Length; i++) { PostFlopStats[i] = new ActionStats(); } }