mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Add descriptions to TranslationConfig
This commit is contained in:
parent
a4e8e7375b
commit
fe64a4abab
@ -6,8 +6,19 @@ namespace NewHorizons.External.Configs
|
|||||||
{
|
{
|
||||||
public class TranslationConfig
|
public class TranslationConfig
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Translation table for dialogue
|
||||||
|
/// </summary>
|
||||||
public Dictionary<string, string> dialogueDictionary;
|
public Dictionary<string, string> dialogueDictionary;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Translation table for Ship Log (entries, facts, etc)
|
||||||
|
/// </summary>
|
||||||
public Dictionary<string, string> shipLogDictionary;
|
public Dictionary<string, string> shipLogDictionary;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Translation table for UI elements
|
||||||
|
/// </summary>
|
||||||
public Dictionary<string, string> uiDictionary;
|
public Dictionary<string, string> uiDictionary;
|
||||||
|
|
||||||
public TranslationConfig(string filename)
|
public TranslationConfig(string filename)
|
||||||
|
|||||||
@ -20,9 +20,17 @@ namespace NewHorizons.External.Modules.VariableSize
|
|||||||
return curve;
|
return curve;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[JsonObject]
|
||||||
public class TimeValuePair
|
public class TimeValuePair
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// A specific point in time
|
||||||
|
/// </summary>
|
||||||
public float Time { get; set; }
|
public float Time { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The value for this point in time
|
||||||
|
/// </summary>
|
||||||
public float Value { get; set; }
|
public float Value { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user