mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-17 19:11:32 +00:00
12 lines
225 B
C#
12 lines
225 B
C#
using QSB.WorldSync;
|
|
|
|
namespace QSB.Animation.NPC.WorldObjects
|
|
{
|
|
public interface INpcAnimController : IWorldObject
|
|
{
|
|
CharacterDialogueTree GetDialogueTree();
|
|
void StartConversation();
|
|
void EndConversation();
|
|
}
|
|
}
|