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