mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-18 04:10:36 +00:00
15 lines
386 B
C#
15 lines
386 B
C#
namespace QSB.ItemSync.WorldObjects.Items
|
|
{
|
|
internal class QSBSlideReelItem : QSBOWItem<SlideReelItem>
|
|
{
|
|
public override void PlaySocketAnimation()
|
|
=> AttachedObject.PlaySocketAnimation();
|
|
|
|
public override void PlayUnsocketAnimation()
|
|
=> AttachedObject.PlayUnsocketAnimation();
|
|
|
|
public override void OnCompleteUnsocket()
|
|
=> AttachedObject.OnCompleteUnsocket();
|
|
}
|
|
}
|