#include "naming.h" #include namespace com::fourisland::lingo2_archipelago { std::string GetLetterName(std::string key, bool level2) { std::ostringstream lettername_s; lettername_s << key; lettername_s << (level2 ? "2" : "1"); return lettername_s.str(); } } // namespace com::fourisland::lingo2_archipelago tps://git.fourisland.com/witness-tutorializer' title='witness-tutorializer Git repository'/>
about summary refs log tree commit diff stats
blob: 57a345d54b47a448f22cb50523bc0cbb22897ba2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21