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,17 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RPGTALK.Helper
{
public class RPGTalkConfig : ScriptableObject
{
public Sprite logo;
public bool alreadyConfigured;
public bool usingTMP;
}
}