11 lines
213 B
C#
Raw Normal View History

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