quantum-space-buddies/QSB/ShipSync/WorldObjects/QSBShipDetachableLeg.cs

22 lines
588 B
C#
Raw Normal View History

2022-05-14 11:18:48 +00: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;
internal class QSBShipDetachableLeg : LinkedWorldObject<ShipDetachableLeg, ShipLegTransformSync>
{
protected override GameObject NetworkObjectPrefab => QSBNetworkManager.singleton.ShipLegPrefab;
protected override bool SpawnWithServerAuthority => true;
public override void SendInitialState(uint to)
{
2022-08-03 00:38:14 +00:00
// todo SendInitialState?
2022-05-14 11:18:48 +00:00
}
}