mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-07 13:05:41 +00:00
18 lines
393 B
C#
18 lines
393 B
C#
using QSB.EchoesOfTheEye.Ghosts.WorldObjects;
|
|
using QSB.Messaging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace QSB.EchoesOfTheEye.Ghosts.Messages;
|
|
|
|
internal class StopFacingMessage : QSBWorldObjectMessage<QSBGhostController>
|
|
{
|
|
public override void OnReceiveRemote()
|
|
{
|
|
WorldObject.StopFacing(true);
|
|
}
|
|
}
|