mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-10 15:53:19 +00:00
21 lines
400 B
C#
21 lines
400 B
C#
using QSB.Animation.NPC.WorldObjects;
|
|
using QSB.Messaging;
|
|
|
|
namespace QSB.Animation.NPC.Messages;
|
|
|
|
internal class NpcAnimationMessage : QSBWorldObjectMessage<INpcAnimController, bool>
|
|
{
|
|
public NpcAnimationMessage(bool start) : base(start) { }
|
|
|
|
public override void OnReceiveRemote()
|
|
{
|
|
if (Data)
|
|
{
|
|
WorldObject.StartConversation();
|
|
}
|
|
else
|
|
{
|
|
WorldObject.EndConversation();
|
|
}
|
|
}
|
|
} |