mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-03-12 13:13:32 +00:00
10 lines
233 B
C#
10 lines
233 B
C#
using QSB.WorldSync;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.EchoesOfTheEye.Prisoner.WorldObjects;
|
|
|
|
internal class QSBPrisonerMarker : WorldObject<PrisonerBehaviourCueMarker>
|
|
{
|
|
public Transform Transform => AttachedObject.transform;
|
|
}
|