Kleiner Anfang für Dialog system

This commit is contained in:
Dominik
2023-05-28 11:44:55 +02:00
parent 370380751b
commit 792c90a214
702 changed files with 109467 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
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;
}
}