extends Node var ap_name = "" var ap_id = 0 var total = 0 var solved = 0 var classification = 0 var ran = false func handle_correct(): solved += 1 if solved >= total && !ran: ran = true var apclient = global.get_node("Archipelago") if classification & apclient._location_classification_bit: apclient.sendLocation(ap_id) -git' href='https://git.fourisland.com/lingo2-archipelago' title='lingo2-archipelago Git repository'/>
about summary refs log tree commit diff stats
path: root/tools/util/naming.h
blob: 85e2db0c77fcd1569abfad9855f6ad1419b292df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef TOOLS_UTIL_NAMING_H_
#define TOOLS_UTIL_NAMING_H_

#include <string>

namespace com::fourisland::lingo2_archipelago {

std::string GetLetterName(std::string key, bool level2);

}  // namespace com::fourisland::lingo2_archipelago

#endif /* TOOLS_UTIL_NAMING_H_ */