mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-27 03:35:20 +00:00
13 lines
268 B
C#
13 lines
268 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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|