Luca Wey c7940aa8ea Revert "Musik Anderswelt & Effekte"
This reverts commit 574b404c2db3de8f6612460326a6881ac85c9f61
2023-06-07 11:42:40 +02:00

14 lines
373 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RPGTALK.Localization
{
[CreateAssetMenu(fileName = "NewLanguage", menuName = "RPGTalk/Language", order = 12)]
public class RPGTalkLanguage : ScriptableObject
{
public string identifier;
public bool mainLanguage;
public TextAsset[] txts;
}
}