Best way to sync data on a table?
I'm creating something similar to a bowling scoresheet: Each row is a different player and each column contains scores for each round.
Right now I'm thinking about using a couple realtime arrays much like you would use 2 lists to store the data. However, the model for the inner array only contains a single int (and the outer one contains only an realtime array).
I'm also not sure a RealtimeSet would work since the data isn't ordered?
I hope I'm over-complicating this. Is there a better way to sync this kind of data?
Right now I'm thinking about using a couple realtime arrays much like you would use 2 lists to store the data. However, the model for the inner array only contains a single int (and the outer one contains only an realtime array).
I'm also not sure a RealtimeSet would work since the data isn't ordered?
I hope I'm over-complicating this. Is there a better way to sync this kind of data?