mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-22 22:07:59 +01:00
21 lines
359 B
C#
21 lines
359 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Fie.Voice
|
|
{
|
|
[Serializable]
|
|
public class FieEmotionAnimationData
|
|
{
|
|
[SerializeField]
|
|
public string emotion;
|
|
|
|
[SerializeField]
|
|
public string animationName;
|
|
|
|
public FieEmotionAnimationData(string emotion, string animationName)
|
|
{
|
|
this.emotion = emotion;
|
|
this.animationName = animationName;
|
|
}
|
|
}
|
|
}
|