mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-10 15:53:19 +00:00
22 lines
540 B
C#
22 lines
540 B
C#
|
namespace QSB.ItemSync.WorldObjects.Items
|
|||
|
{
|
|||
|
class QSBSlideReelItem : QSBOWItem<SlideReelItem>
|
|||
|
{
|
|||
|
public override void Init(SlideReelItem attachedObject, int id)
|
|||
|
{
|
|||
|
ObjectId = id;
|
|||
|
AttachedObject = attachedObject;
|
|||
|
base.Init(attachedObject, id);
|
|||
|
}
|
|||
|
|
|||
|
public override void PlaySocketAnimation()
|
|||
|
=> AttachedObject.PlaySocketAnimation();
|
|||
|
|
|||
|
public override void PlayUnsocketAnimation()
|
|||
|
=> AttachedObject.PlayUnsocketAnimation();
|
|||
|
|
|||
|
public override void OnCompleteUnsocket()
|
|||
|
=> AttachedObject.OnCompleteUnsocket();
|
|||
|
}
|
|||
|
}
|