Codechange: separate TextColour enumeration and flags

This commit is contained in:
Rubidium
2026-04-27 11:30:30 +02:00
committed by rubidium42
parent 31424f700e
commit c59d64c132
86 changed files with 575 additions and 511 deletions
+1 -1
View File
@@ -241,7 +241,7 @@ uint8_t NetworkSpectatorCount()
* @param str Arbitrary extra string, depending on the action. For example a complete message or company name.
* @param data Arbitrary extra data, depending on the action. For example a client's ID or an amount of money that was given.
*/
void NetworkTextMessage(NetworkAction action, TextColour colour, bool self_send, std::string_view name, std::string_view str, StringParameter &&data)
void NetworkTextMessage(NetworkAction action, ExtendedTextColour colour, bool self_send, std::string_view name, std::string_view str, StringParameter &&data)
{
std::string message;
StringBuilder builder(message);