2022-05-14 12:18:48 +01:00
|
|
|
|
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;
|
|
|
|
|
|
2023-07-28 19:30:57 +01:00
|
|
|
|
public class QSBShipDetachableLeg : LinkedWorldObject<ShipDetachableLeg, ShipLegTransformSync>
|
2022-05-14 12:18:48 +01:00
|
|
|
|
{
|
|
|
|
|
protected override GameObject NetworkObjectPrefab => QSBNetworkManager.singleton.ShipLegPrefab;
|
2023-05-08 11:38:24 -07:00
|
|
|
|
protected override bool SpawnWithServerOwnership => true;
|
2022-05-14 12:18:48 +01:00
|
|
|
|
|
|
|
|
|
public override void SendInitialState(uint to)
|
|
|
|
|
{
|
2022-08-02 17:38:14 -07:00
|
|
|
|
// todo SendInitialState?
|
2022-05-14 12:18:48 +01:00
|
|
|
|
}
|
|
|
|
|
}
|