using System.Collections.Immutable; namespace NadekoBot.Core.Services { public interface IImagesService : INService { ImmutableArray Heads { get; } ImmutableArray Tails { get; } ImmutableArray<(string, ImmutableArray)> Currency { get; } ImmutableArray> Dice { get; } ImmutableArray SlotBackground { get; } ImmutableArray> SlotEmojis { get; } ImmutableArray> SlotNumbers { get; } ImmutableArray WifeMatrix { get; } ImmutableArray RategirlDot { get; } ImmutableArray XpCard { get; } void Reload(); } }