Add EmbedType enum

This commit is contained in:
Christopher F
2017-06-16 22:39:40 -04:00
parent 1942637380
commit 0708bc5d48
5 changed files with 18 additions and 7 deletions

View File

@@ -10,7 +10,7 @@ namespace Discord
public EmbedBuilder()
{
_embed = new Embed("rich");
_embed = new Embed(EmbedType.Rich);
Fields = new List<EmbedFieldBuilder>();
}