mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 21:59:16 +00:00
16 lines
343 B
C#
16 lines
343 B
C#
namespace QSB.ItemSync.WorldObjects
|
|
{
|
|
internal class QSBWarpCoreItem : QSBOWItem<WarpCoreItem>
|
|
{
|
|
public override void Init(WarpCoreItem attachedObject, int id)
|
|
{
|
|
ObjectId = id;
|
|
AttachedObject = attachedObject;
|
|
base.Init(attachedObject, id);
|
|
}
|
|
|
|
public bool IsVesselCoreType()
|
|
=> AttachedObject.IsVesselCoreType();
|
|
}
|
|
}
|