mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-04 02:47:22 +00:00
22 lines
600 B
C#
22 lines
600 B
C#
using QSB.ShipSync.TransformSync;
|
|
using QSB.Utility.LinkedWorldObject;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using UnityEngine;
|
|
|
|
namespace QSB.ShipSync.WorldObjects;
|
|
|
|
internal class QSBShipDetachableModule : LinkedWorldObject<ShipDetachableModule, ShipModuleTransformSync>
|
|
{
|
|
protected override GameObject NetworkObjectPrefab => QSBNetworkManager.singleton.ShipModulePrefab;
|
|
protected override bool SpawnWithServerAuthority => true;
|
|
|
|
public override void SendInitialState(uint to)
|
|
{
|
|
// todo SendInitialState?
|
|
}
|
|
}
|