Skip to content
This repository has been archived by the owner on Jan 3, 2025. It is now read-only.

Commit

Permalink
added answer command & removed / before commands
Browse files Browse the repository at this point in the history
  • Loading branch information
b1tflyyyy committed Apr 19, 2024
1 parent 4a27755 commit a57da88
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
9 changes: 5 additions & 4 deletions source/view/texts/message_commands/message_commands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@

#include "message_commands.hpp"

constinit std::string_view SMessage_Commands::Start{ "/start" };
constinit std::string_view SMessage_Commands::Profile{ "/profile" };
constinit std::string_view SMessage_Commands::Programmer_Game{ "/pr_game" };
constinit std::string_view SMessage_Commands::Math_Game{ "/math_game" };
constinit std::string_view SMessage_Commands::Start{ "start" };
constinit std::string_view SMessage_Commands::Profile{ "profile" };
constinit std::string_view SMessage_Commands::Programmer_Game{ "pr_game" };
constinit std::string_view SMessage_Commands::Math_Game{ "math_game" };
constinit std::string_view SMessage_Commands::Answer{ "answer" };
1 change: 1 addition & 0 deletions source/view/texts/message_commands/message_commands.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@ struct SMessage_Commands
constinit static std::string_view Profile;
constinit static std::string_view Programmer_Game;
constinit static std::string_view Math_Game;
constinit static std::string_view Answer;
};

0 comments on commit a57da88

Please sign in to comment.