fix: code formatting

This commit is contained in:
jeefo 2023-03-13 15:39:15 +03:00
commit 2718adbb8f
No known key found for this signature in database
GPG key ID: 927BCA0779BEA8ED
13 changed files with 206 additions and 208 deletions

View file

@ -14,7 +14,7 @@ struct BotName {
public:
BotName () = default;
BotName (StringRef name, int usedBy) : name (name), usedBy (usedBy) { }
BotName (StringRef name, int usedBy) : name (name), usedBy (usedBy) {}
};
// voice config structure definition
@ -24,7 +24,7 @@ struct ChatterItem {
float duration;
public:
ChatterItem (StringRef name, float repeat, float duration) : name (name), repeat (repeat), duration (duration) { }
ChatterItem (StringRef name, float repeat, float duration) : name (name), repeat (repeat), duration (duration) {}
};
// mostly config stuff, and some stuff dealing with menus
@ -112,7 +112,7 @@ public:
void clearUsedName (Bot *bot);
// set the bot names as used
void setBotNameUsed(const int index, StringRef name);
void setBotNameUsed (const int index, StringRef name);
// initialize weapon info
void initWeapons ();