mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
12 lines
358 B
C#
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>();
|
|
}
|
|
}
|