mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-18 04:10:36 +00:00
15 lines
275 B
C#
15 lines
275 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace QSB.Animation.NPC.WorldObjects
|
|||
|
{
|
|||
|
public interface INpcAnimController
|
|||
|
{
|
|||
|
CharacterDialogueTree GetDialogueTree();
|
|||
|
void StartConversation();
|
|||
|
void EndConversation();
|
|||
|
}
|
|||
|
}
|