about summary refs log tree commit diff stats
path: root/data/maps/the_tree
diff options
context:
#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