-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssets.cs
More file actions
35 lines (33 loc) · 1.63 KB
/
Assets.cs
File metadata and controls
35 lines (33 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
using Discord;
namespace Bloqbit
{
public static class Assets
{
public static class Icons
{
public const string Self = "<:Bloqbit:1407517788377055283>";
public const string Check = "<:bb_check:1407517838540931253>";
public const string XMark = "<:bb_xmark:1407517869901873264>";
public const string Info = "<:bb_info:1407517847399305266>";
public const string Exclamation = "<:bb_exclaim:1407517845012746250>";
public const string Question = "<:bb_question:1407517861429252218>";
public const string Plus = "<:bb_plus:1407517858962870364>";
public const string Minus = "<:bb_minus:1407517849890590892>";
public const string Update = "<:bb_update:1408066291390091294>";
public const string Dollar = "<:bb_dollar:1407517842114347089>";
public const string Play = "<:bb_play:1407517855049846844>";
public const string Pause = "<:bb_pause:1407517852080148630>";
public const string Stop = "<:bb_stop:1407517864239435888>";
public const string Record = "<:bb_record:1408067309972623413>";
public const string Entry = "<:bb_entry:1408065319838290041>";
public const string NoEntry = "<:bb_noentry:1408065322006614096>";
public const string Blank = "<:bb_template:1407517867628302376>";
}
public static class Colors
{
public static readonly Color Primary = Color.Blue;
public static readonly Color Secondary = Color.Red;
public static readonly Color Tertiary = Color.Teal;
}
}
}