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