mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
Read about the medusa system [here](https://nadekobot.readthedocs.io/en/latest/medusa/creating-a-medusa/)
14 lines
423 B
C#
14 lines
423 B
C#
namespace NadekoBot;
|
|
|
|
public static class EmbedBuilderExtensions
|
|
{
|
|
public static IEmbedBuilder WithOkColor(this IEmbedBuilder eb)
|
|
=> eb.WithColor(EmbedColor.Ok);
|
|
|
|
public static IEmbedBuilder WithPendingColor(this IEmbedBuilder eb)
|
|
=> eb.WithColor(EmbedColor.Pending);
|
|
|
|
public static IEmbedBuilder WithErrorColor(this IEmbedBuilder eb)
|
|
=> eb.WithColor(EmbedColor.Error);
|
|
|
|
} |