Scripting API
LanguageInfo
Namespace: KodeFlowStudios.Parley.Localization
Immutable bundle of a language’s ISO code, native name, and English name.
Declaration
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Namespace: KodeFlowStudios.Parley.Localization
public readonly struct LanguageInfo
{
public readonly string Code;
public readonly string NativeName;
public readonly string EnglishName;
public LanguageInfo(string code, string native, string english)
{
Code = code;
NativeName = native;
EnglishName = english;
}
}