mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-30 21:32:47 +00:00
12 lines
239 B
C#
12 lines
239 B
C#
using QSB.WorldSync;
|
|
|
|
namespace QSB.EchoesOfTheEye.EclipseElevators.WorldObjects;
|
|
|
|
internal class QSBElevatorDestination : WorldObject<ElevatorDestination>
|
|
{
|
|
public override void SendInitialState(uint to)
|
|
{
|
|
// todo : implement
|
|
}
|
|
}
|