Sequence Diagram
Holistic Picture
The sequence diagram below illustrates the interaction flow between different components in the GamingPanda gaming system:
- Player - user's web browser
- Client - client system with own website
- GamingPanda - hidden from Player
- Game - one of game product implementations, visible to Player

Flow Description
Initial Login and Game Entry
- Player logs into the Client system
- Player selects and enters a game
User Information Processing
- For new users or when user information needs updating:
- Client sends game/start request to GamingPanda
- GamingPanda returns game_url
- Client redirects Player into the game
- For new users or when user information needs updating:
Game Session
- Client opens the game for Player
- Game session begins
Game Round Cycle
- During each game round:
- "balance" request is made to check player's current balance
- "debit" request is made when player places bets
- "credit_n_settle" request is made when player wins
- During each game round:
This interaction flow ensures seamless integration between all components while maintaining secure financial transactions through the GamingPanda system.