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

11 lines
213 B
C#
Raw Normal View History

2021-04-29 20:00:02 +00:00
namespace QSB.Animation.NPC.WorldObjects
2021-04-29 17:30:45 +00:00
{
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
}
}