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

25 lines
568 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RPGTALK.Helper
{
[System.Serializable]
public class Expression
{
public string name;
public Sprite photo;
public string boolInAnimator;
public AudioClip audio;
}
[CreateAssetMenu(fileName = "New Character", menuName = "RPGTalk/Character", order = 12)]
public class RPGTalkCharacter : ScriptableObject
{
public string dialoger;
public Sprite photo;
public Expression[] expressions;
}
}