mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-04 03:39:55 +00:00
16 lines
391 B
C#
16 lines
391 B
C#
namespace QSB.Animation.NPC.WorldObjects
|
|
{
|
|
internal class QSBCharacterAnimController : NpcAnimController<CharacterAnimController>
|
|
{
|
|
public override void SendInitialState(uint to)
|
|
{
|
|
// todo SendInitialState
|
|
}
|
|
|
|
public override CharacterDialogueTree GetDialogueTree()
|
|
=> AttachedObject._dialogueTree;
|
|
|
|
public bool InConversation()
|
|
=> AttachedObject._inConversation;
|
|
}
|
|
} |