mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-26 09:35:26 +00:00
17 lines
392 B
C#
17 lines
392 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;
|
|
}
|
|
}
|