mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 12:54:51 +00:00
25 lines
638 B
C#
25 lines
638 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();
|
|
|
|
public NomaiRemoteCameraPlatform.ID GetRemoteCameraID()
|
|
=> AttachedObject.GetRemoteCameraID();
|
|
}
|
|
}
|