mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-23 15:37:51 -08:00
7 lines
135 B
C#
7 lines
135 B
C#
namespace Roulette;
|
|
|
|
internal record struct Bet(BetType Type, int Number, int Wager)
|
|
{
|
|
public int Payout => Wager * Type.Payout;
|
|
}
|