mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-10 06:51:36 +00:00
13 lines
280 B
C#
13 lines
280 B
C#
|
namespace QSB.ItemSync.WorldObjects
|
|||
|
{
|
|||
|
internal class QSBWarpCoreSocket : QSBOWItemSocket<WarpCoreSocket>
|
|||
|
{
|
|||
|
public override void Init(WarpCoreSocket attachedObject, int id)
|
|||
|
{
|
|||
|
ObjectId = id;
|
|||
|
AttachedObject = attachedObject;
|
|||
|
base.Init(attachedObject, id);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|