Files
nadekobot/NadekoBot.Core/Modules/Gambling/Services/BlackJackService.cs
2021-09-06 21:29:22 +02:00

12 lines
358 B
C#

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