mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-11 09:38:48 +00:00
22 lines
537 B
C#
22 lines
537 B
C#
namespace QSB.ItemSync.WorldObjects
|
|
{
|
|
internal class QSBSharedStone : QSBOWItem<SharedStone>
|
|
{
|
|
public override void Init(SharedStone 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();
|
|
}
|
|
}
|