summaryrefslogtreecommitdiff
path: root/Assets/Mountools/Tools/MountoolsLanguage.cs
blob: cabe1835ac27751c54259c200f866b16759d910e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace Mountools.Tools
{
    public static class MountoolsLanguage
    {
        public static string Lang(string chinese, string english)
        {
#if MT_L_CHINESE
            return chinese;
#endif
#if MT_L_ENGLISH
            return english;
#endif
        }
    }
}