bool CGameTeams::SquashTeammates(int Team)
{
return Team != TEAM_FLOCK && Count(Team) > 1 && GetTeamState(Team) != CGameTeams::TEAMSTATE_OPEN;
}
!Teams()->SquashTeammates(Team())
in CCharacter::Die?OnWindowResize()
)parent->findObject<ObjectType>("name");
or somethingExecuteLine()
my only option? seems kinda bad to have to re-format the string over and overroot@debian-ryzen ~/mediawiki # ./deploy.sh
Ignoring unsupported options: links, restart
Creating service mediawiki_database
failed to create service mediawiki_database: Error response from daemon: network mediawiki_default not found
root@debian-ryzen ~/mediawiki # ./deploy.sh
Ignoring unsupported options: links, restart
Creating service mediawiki_mediawiki
failed to create service mediawiki_mediawiki: Error response from daemon: network mediawiki_default not found
root@debian-ryzen ~/mediawiki # ./deploy.sh
Ignoring unsupported options: links, restart
Creating network mediawiki_default
Creating service mediawiki_mediawiki
Creating service mediawiki_database
docker info
docker compose up -d
[+] Running 2/2
✔ mediawiki Pulled 1.1s
✔ database Pulled 1.1s
WARN[0001] volume "mediawiki_ddnetwiki-images" already exists but was not created by Docker Compose. Use `external: true` to use an existing volume
WARN[0001] volume "mediawiki_ddnetwiki-extensions" already exists but was not created by Docker Compose. Use `external: true` to use an existing volume
WARN[0001] volume "mediawiki_ddnetwiki-apache2" already exists but was not created by Docker Compose. Use `external: true` to use an existing volume
WARN[0001] volume "mediawiki_ddnetwiki-mariadb" already exists but was not created by Docker Compose. Use `external: true` to use an existing volume
[+] Running 3/3
✔ Network mediawiki_default Created 0.0s
✔ Container mediawiki-database-1 Started 0.5s
✔ Container mediawiki-mediawiki-1 Started
docker compose -f stack.yml up -d
enum UnicodeMap : uint16_t {}
or somethingFONTICON_PLUS
FONTICON_MINUS
FONTICON_LEFT_ARROW
(edited)const char *FONTICON_CROSS = "\xEF\x80\x8D";
(edited)Copy Glyph
button and paste it in the new website. Its output should look something like this: ef 8f ad
. Now you just copy that into a code piece that accepts font icons, and format it to \xEF\x8F\xAD
. (edited)const char *FONTICON_CROSS = "\xEF\x80\x8D";
(edited)FONT_ICON
and you'd be given a list#pragma once
or (more old friendly)
#ifndef HEADER_H
#define HEADER_H
// header contents
#endif // HEADER_H
const static char
s?static constexpr char* something = "this is a compile-time determinable value that is defined in all translation units";
(edited)const char*
that is then included somewherec++
namespace FontIcons
{
const static char *FONT_ICON_LOCK = "\xEF\x80\xA3";
const static char *FONT_ICON_HEART = "\xEF\x80\x84";
const static char *FONT_ICON_CERTIFICATE = "\xEF\x82\xA3";
const static char *FONT_ICON_CHECK = "\xEF\x80\x8C";
const static char *FONT_ICON_XMARK = "\xEF\x80\x8D";
}
c++
namespace FontIcons
{
const static char *FONT_ICON_LOCK = "\xEF\x80\xA3";
const static char *FONT_ICON_HEART = "\xEF\x80\x84";
const static char *FONT_ICON_CERTIFICATE = "\xEF\x82\xA3";
const static char *FONT_ICON_CHECK = "\xEF\x80\x8C";
const static char *FONT_ICON_XMARK = "\xEF\x80\x8D";
}
Debug Assertion Failed!
Program: ...os\DDNet Builds\fonticon_enum\out\build\x64-Release\DDNet.exe
File: minkernel\crts\ucrt\src\appcrt\time\strftime.cpp
Line: 135
Expression: timeptr != nullptr
../src/engine/textrender.h:53:21: error: ‘FontIcons::FONT_ICON_HEART’ defined but not used [-Werror=unused-variable]
53 | static const char *FONT_ICON_HEART = "\xEF\x80\x84";
| ^~~~~~~~~~~~~~~
../src/engine/textrender.h:52:21: error: ‘FontIcons::FONT_ICON_MAGNIFYING_GLASS’ defined but not used [-Werror=unused-variable]
52 | static const char *FONT_ICON_MAGNIFYING_GLASS = "\xEF\x80\x82";
| ^~~~~~~~~~~~~~~~~~~~~~~~~~
../src/engine/textrender.h:51:21: error: ‘FontIcons::FONT_ICON_LOCK’ defined but not used [-Werror=unused-variable]
51 | static const char *FONT_ICON_LOCK = "\xEF\x80\xA3";
| ^~~~~~~~~~~~~~
char* TEXT
and a char *TEXT