about summary refs log tree commit diff stats
path: root/src/eye_indicator.cpp
Path not found
tools/util/naming.cpp?h=v8.0.3&id=8cfee29fe6500e96c3b8669c12ac944716e9aae4'>plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "naming.h"

#include <sstream>

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