quantum-space-buddies/QSB/Animation/NPC/WorldObjects/INpcAnimController.cs

16 lines
300 B
C#
Raw Normal View History

2021-04-29 17:30:45 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace QSB.Animation.NPC.WorldObjects
{
public interface INpcAnimController
{
CharacterDialogueTree GetDialogueTree();
void StartConversation();
void EndConversation();
2021-04-29 19:59:25 +00:00
bool InConversation();
2021-04-29 17:30:45 +00:00
}
}