##########################################################################################################
# about_csv_table.txt 
#
# there is the ability of creating your own starting-hand-chart by an office application as a gui helper
# use terminology from StartingHandChart class (RAISE4, CALL) instead of -1, 0, 1, 4...
# take a look at the examples or use the template
# export your data to a csv file and link the constructor of TableCSV class to it
#
##########################################################################################################
#
# SPECIFICATION OF TABLE STRUCTURE
#
###################################
# ROWS:
###################################
# HandOfCards descending
#
# - 13 Pocket pairs
# Ace combinations
# - 12 suited
# - 12 unsuited
# King combinations
# - 11 suited
# - 11 unsuited
# Queen combinations
# - 10 suited
# - 10 unsuited
# Jack combinations
# - 9 suited
# - 9 unsuited
# Ten combinations (regularly only high Tens playable)
# - 8 suited
# - 8 unsuited
# Connectors (lower than Ten)
# - 7 suited
# - 7 unsuited (mostly not to play)
#
# rows total: 13+24+22+20+18+16+14 = 127
###################################
# COLUMS:
###################################
# Always a set of 5 columns by positions: early, middle, late, SB, BB
# starting the amounts of calls without raise: 0-4 (4 stands for >=4)
# following the amounts of raises: 1-3
#
# columns total: 8*5 = 40