diff options
Diffstat (limited to 'Assets/Packages/Lean/Localization/Scripts/LeanLanguage.cs')
| -rw-r--r-- | Assets/Packages/Lean/Localization/Scripts/LeanLanguage.cs | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/Assets/Packages/Lean/Localization/Scripts/LeanLanguage.cs b/Assets/Packages/Lean/Localization/Scripts/LeanLanguage.cs deleted file mode 100644 index 1a39708..0000000 --- a/Assets/Packages/Lean/Localization/Scripts/LeanLanguage.cs +++ /dev/null @@ -1,43 +0,0 @@ -using UnityEngine; -using System.Collections.Generic; - -namespace Lean.Localization -{ - /// <summary>This class stores information about a single language, and any of its optional cultures.</summary> - [System.Serializable] - public class LeanLanguage - { - [SerializeField] - private string name; - - [SerializeField] - private List<string> cultures; - - public string Name - { - set - { - name = value; - } - - get - { - return name; - } - } - - /// <summary>This culture names for this language (e.g. en-GB, en-US).</summary> - public List<string> Cultures - { - get - { - if (cultures == null) - { - cultures = new List<string>(); - } - - return cultures; - } - } - } -}
\ No newline at end of file |
