mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-08 09:41:07 +00:00
12 lines
286 B
C#
12 lines
286 B
C#
using QSB.WorldSync;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.EchoesOfTheEye.Prisoner.WorldObjects;
|
|
|
|
internal class QSBPrisonerMarker : WorldObject<PrisonerBehaviourCueMarker>
|
|
{
|
|
public override void SendInitialState(uint to) { }
|
|
|
|
public Transform Transform => AttachedObject.transform;
|
|
}
|