diff options
Diffstat (limited to 'Thronefall_v1.57/Thronefall/I2.Loc/TranslationQuery.cs')
-rw-r--r-- | Thronefall_v1.57/Thronefall/I2.Loc/TranslationQuery.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Thronefall_v1.57/Thronefall/I2.Loc/TranslationQuery.cs b/Thronefall_v1.57/Thronefall/I2.Loc/TranslationQuery.cs new file mode 100644 index 0000000..009b151 --- /dev/null +++ b/Thronefall_v1.57/Thronefall/I2.Loc/TranslationQuery.cs @@ -0,0 +1,16 @@ +namespace I2.Loc; + +public struct TranslationQuery +{ + public string OrigText; + + public string Text; + + public string LanguageCode; + + public string[] TargetLanguagesCode; + + public string[] Results; + + public string[] Tags; +} |