Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
public class Player
{
// Player's balance
public int Balance { get; private set; }
// The current bet placed by the player
public Bet CurrentBet { get; private set; }
// Constructor to initialize the player with an initial balance
public Player(int initialBalance)
{
Balance = initialBalance;
}
// Places a bet and updates the player's balance
public void PlaceBet(Bet bet)
{
Balance -= bet.Amount;
CurrentBet = bet;
}
// Collects the winnings and updates the player's balance
public void CollectWinnings(int winnings)
{
Balance += winnings;
}
}