1
0
mirror of https://github.com/misternebula/quantum-space-buddies.git synced 2025-02-16 21:40:08 +00:00
Mister_Nebula 200e344064 cleanup
2021-04-29 21:00:02 +01:00

11 lines
213 B
C#

namespace QSB.Animation.NPC.WorldObjects
{
public interface INpcAnimController
{
CharacterDialogueTree GetDialogueTree();
void StartConversation();
void EndConversation();
bool InConversation();
}
}