mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-25 06:35:45 +00:00
10 lines
334 B
C#
10 lines
334 B
C#
using QSB.EchoesOfTheEye.EclipseDoors.WorldObjects;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.EchoesOfTheEye.EclipseDoors.VariableSync;
|
|
|
|
internal class EclipseDoorVariableSyncer : RotatingElementsVariableSyncer<QSBEclipseDoorController>
|
|
{
|
|
protected override Transform[] RotatingElements => WorldObject.AttachedObject._rotatingElements;
|
|
}
|