From e8dd5d4fd406e6e6b710cbe85309f6870bccc37a Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sun, 3 Nov 2019 18:31:04 -0500 Subject: Remove everything --- .../Lean/Localization/Scripts/LeanLanguage.cs | 43 ---------------------- 1 file changed, 43 deletions(-) delete mode 100644 Assets/Packages/Lean/Localization/Scripts/LeanLanguage.cs (limited to 'Assets/Packages/Lean/Localization/Scripts/LeanLanguage.cs') 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 -{ - /// This class stores information about a single language, and any of its optional cultures. - [System.Serializable] - public class LeanLanguage - { - [SerializeField] - private string name; - - [SerializeField] - private List cultures; - - public string Name - { - set - { - name = value; - } - - get - { - return name; - } - } - - /// This culture names for this language (e.g. en-GB, en-US). - public List Cultures - { - get - { - if (cultures == null) - { - cultures = new List(); - } - - return cultures; - } - } - } -} \ No newline at end of file -- cgit v1.2.3