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