mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-29 00:32:43 +00:00
13 lines
385 B
C#
13 lines
385 B
C#
using Cysharp.Threading.Tasks;
|
|
using QSB.WorldSync;
|
|
using System.Threading;
|
|
|
|
namespace QSB.EchoesOfTheEye.DreamRafts.WorldObjects;
|
|
|
|
public class QSBDreamRaftController : WorldObject<DreamRaftController>
|
|
{
|
|
public override void SendInitialState(uint to) { }
|
|
|
|
public override async UniTask Init(CancellationToken ct) =>
|
|
EnableDisableDetector.Add(AttachedObject.gameObject, this);
|
|
} |