mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-29 18:32:45 +00:00
14 lines
318 B
C#
14 lines
318 B
C#
namespace QSB.Animation.NPC.WorldObjects
|
|
{
|
|
internal class QSBTravelerEyeController : NpcAnimController<TravelerEyeController>
|
|
{
|
|
public override void SendInitialState(uint to)
|
|
{
|
|
// todo SendInitialState
|
|
}
|
|
|
|
public override CharacterDialogueTree GetDialogueTree()
|
|
=> AttachedObject._dialogueTree;
|
|
}
|
|
}
|