Guest User

Untitled

a guest
Oct 15th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.61 KB | None | 0 0
  1. private static readonly Dictionary<string, ChatEmotions> Emotions = new Dictionary<string, ChatEmotions>()
  2. {
  3.     // Smile
  4.     { ":)", ChatEmotions.Smile },
  5.     { ";)", ChatEmotions.Smile },
  6.     { ":D", ChatEmotions.Smile },
  7.     { ";d", ChatEmotions.Smile },
  8.     { "(inlove)", ChatEmotions.Smile },
  9.     { ";]", ChatEmotions.Smile },
  10.     { ":]", ChatEmotions.Smile },
  11.     { ":smile", ChatEmotions.Smile },
  12.     { "I'm happy.", ChatEmotions.Smile }
  13.  
  14.     // Angry
  15.     { ">:(", ChatEmotions.Angry },
  16.     { ">:[", ChatEmotions.Angry },
  17.     { ":@", ChatEmotions.Angry },
  18.     { "Fuck you", ChatEmotions.Angry }
  19.  
  20. };
Add Comment
Please, Sign In to add comment