group2 0.1.0
CSE 125 Group 2
Loading...
Searching...
No Matches
EmoteCatalog.hpp
Go to the documentation of this file.
1
8
9#pragma once
10
11namespace emotes
12{
13
17inline constexpr int kEmoteCount = 5;
18
21inline const char* emoteName(int index)
22{
23 switch (index) {
24 case 0:
25 return "FLAIR";
26 case 1:
27 return "MARASCHINO";
28 case 2:
29 return "GANGNAM";
30 case 3:
31 return "HIP HOP";
32 case 4:
33 return "N. SOUL";
34 default:
35 return "";
36 }
37}
38
39} // namespace emotes
Definition EmoteCatalog.hpp:12
const char * emoteName(int index)
Short all-caps label for an emote index (for the wheel widget).
Definition EmoteCatalog.hpp:21
constexpr int kEmoteCount
Number of emotes shown on the wheel.
Definition EmoteCatalog.hpp:17