Hi! So I'm trying to create a simple multiplayer web game using Ktor, but am confused about how I should properly update UI on the client side.
For example, If Player 1 wins the game, I would like to show, "You have won the game!" to Player 1 and, "Player 1 has won" to Player 2. Should I send the display text to each of the clients from the server, or should the clients just be told which player has won and determine what to display based on that? Or, does it not really matter?