mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-04 03:39:55 +00:00
10 lines
216 B
C#
10 lines
216 B
C#
using QSB.WorldSync;
|
|
|
|
namespace QSB.Animation.NPC.WorldObjects;
|
|
|
|
public interface INpcAnimController : IWorldObject
|
|
{
|
|
CharacterDialogueTree GetDialogueTree();
|
|
void StartConversation();
|
|
void EndConversation();
|
|
} |