#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 xml'/>
about summary refs log tree commit diff stats
blob: 33bc7c9c88d4945f1e4f539d6cb6ca7876e81c99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef TOOLS_VALIDATOR_VALIDATOR_H
#define TOOLS_VALIDATOR_VALIDATOR_H

namespace com::fourisland::lingo2_archipelago {

struct CollectedInfo;

void ValidateCollectedInfo(const CollectedInfo& info);

}  // namespace com::fourisland::lingo2_archipelago

#endif /* TOOLS_VALIDATOR_VALIDATOR_H */