#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 el='vcs-git' href='https://git.fourisland.com/lingo2-archipelago' title='lingo2-archipelago Git repository'/>
about summary refs log tree commit diff stats
blob: 108decb845a6dfd04f05648a96ee670cf56ddd0a (plain) (blame)
1
2
3
4
5
from BaseClasses import Location


class Lingo2Location(Location):
    game: str = "Lingo 2"