13 lines
250 B
C#
Raw Normal View History

using QSB.WorldSync;
namespace QSB.Animation.NPC.WorldObjects
2021-04-29 18:30:45 +01:00
{
2021-12-11 21:34:50 -08:00
public interface INpcAnimController : IWorldObject
2021-04-29 18:30:45 +01:00
{
CharacterDialogueTree GetDialogueTree();
void StartConversation();
void EndConversation();
2021-04-29 20:59:25 +01:00
bool InConversation();
2021-04-29 18:30:45 +01:00
}
}