quantum-space-buddies/QSB/Animation/NPC/WorldObjects/INpcAnimController.cs
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();
}
}