I am making a multiple player turn based game and was wondering how I would make the players character be in line with the index position theyre at and have them move down as a line for each turn taking and then to move them back.
For example:
Character row: p1, p2, p3, p4
Dictionary: { [1] = p1, [2] = p2, [3] = p3, [4] = p4 }
Hopefully this helps with what im trying to explain on what Im doing.
I know how to the turn based system just not the character stuff.