9 lines
No EOL
235 B
C#
9 lines
No EOL
235 B
C#
#nullable disable
|
|
using EllieBot.Modules.Gambling.Common.Blackjack;
|
|
|
|
namespace EllieBot.Modules.Gambling.Services;
|
|
|
|
public class BlackJackService : IEService
|
|
{
|
|
public ConcurrentDictionary<ulong, Blackjack> Games { get; } = new();
|
|
} |