mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-10 15:53:19 +00:00
22 lines
591 B
C#
22 lines
591 B
C#
using QSB.Utility;
|
|
using QSB.WorldSync;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.Animation.NPC.WorldObjects
|
|
{
|
|
internal abstract class NpcAnimController<T> : WorldObject<T>, INpcAnimController
|
|
where T : MonoBehaviour
|
|
{
|
|
public abstract CharacterDialogueTree GetDialogueTree();
|
|
|
|
public virtual void StartConversation()
|
|
=> GetDialogueTree().RaiseEvent(nameof(CharacterDialogueTree.OnStartConversation));
|
|
|
|
public virtual void EndConversation()
|
|
=> GetDialogueTree().RaiseEvent(nameof(CharacterDialogueTree.OnEndConversation));
|
|
|
|
public virtual bool InConversation()
|
|
=> false;
|
|
}
|
|
}
|