Files
nadekobot/src/NadekoBot/Modules/Gambling/BlackJack/BlackJackService.cs

9 lines
237 B
C#

#nullable disable
using NadekoBot.Modules.Gambling.Common.Blackjack;
namespace NadekoBot.Modules.Gambling.Services;
public class BlackJackService : INService
{
public ConcurrentDictionary<ulong, Blackjack> Games { get; } = new();
}