Skip to content

Commit

Permalink
ball torture
Browse files Browse the repository at this point in the history
  • Loading branch information
tyackman authored Jul 2, 2024
1 parent 78ca227 commit acb9ea9
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions src/util/libraries/Emote.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@

namespace YimMenu::Emote
{
constexpr int numCategories = 5;
constexpr int maxEmotesPerCategory = 37;

int selectedEmoteCategoryIndex = 0;
int selectedEmoteMemberIndex = 0;
constexpr int numCategories = 5;
constexpr int maxEmotesPerCategory = 37;

constexpr std::array<const char*, numCategories> emoteCategories = {
"Actions",
"Dances",
"Greetings",
"Reactions",
"Taunts" /*, "Gun Twirl" */
};
int selectedEmoteCategoryIndex = 0;
int selectedEmoteMemberIndex = 0;

struct EmoteItemData
{
const char* name;
uint32_t hash;
eEmoteType type;
};
constexpr std::array<const char*, numCategories> emoteCategories = {
"Actions",
"Dances",
"Greetings",
"Reactions",
"Taunts" /*, "Gun Twirl" */
};

struct EmoteItemData
{
const char* name;
uint32_t hash;
eEmoteType type;
};

// Emote Items
constexpr std::array<std::array<EmoteItemData, maxEmotesPerCategory>, numCategories> emoteCategoryMembers = {{
Expand Down Expand Up @@ -152,4 +152,4 @@ namespace YimMenu::Emote
{"You Stink", 0xF6130E04, EMOTE_TYPE_TAUNT}
}}
}};
}
}

0 comments on commit acb9ea9

Please sign in to comment.