14 lines
198 B
C#
14 lines
198 B
C#
|
|
namespace LunaWolfStudios.ScriptableSheets.Samples.Localization
|
||
|
|
{
|
||
|
|
public enum Language
|
||
|
|
{
|
||
|
|
English = 0,
|
||
|
|
French = 1,
|
||
|
|
German = 2,
|
||
|
|
Italian = 3,
|
||
|
|
Polish = 4,
|
||
|
|
Russian = 5,
|
||
|
|
Spanish = 6,
|
||
|
|
}
|
||
|
|
}
|