mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-06 01:00:16 +00:00
13 lines
260 B
C#
13 lines
260 B
C#
using QSB.WorldSync;
|
|
|
|
namespace QSB.Animation.NPC.WorldObjects
|
|
{
|
|
public interface INpcAnimController : IWorldObjectTypeSubset
|
|
{
|
|
CharacterDialogueTree GetDialogueTree();
|
|
void StartConversation();
|
|
void EndConversation();
|
|
bool InConversation();
|
|
}
|
|
}
|