mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-27 03:35:20 +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
|
|
}
|
|
}
|