mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-18 13:23:05 +00:00
27 lines
618 B
C#
27 lines
618 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace QSB.ItemSync.WorldObjects
|
|
{
|
|
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();
|
|
}
|
|
}
|