mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-10 06:51:36 +00:00
22 lines
561 B
C#
22 lines
561 B
C#
namespace QSB.ItemSync.WorldObjects.Items
|
|
{
|
|
internal class QSBSimpleLanternItem : QSBOWItem<SimpleLanternItem>
|
|
{
|
|
public override void Init(SimpleLanternItem 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();
|
|
}
|
|
}
|