2021-11-01 15:49:00 +00:00
|
|
|
|
namespace QSB.ItemSync.WorldObjects.Items
|
2021-02-26 22:24:49 +00:00
|
|
|
|
{
|
2021-02-26 22:26:17 +00:00
|
|
|
|
internal class QSBSharedStone : QSBOWItem<SharedStone>
|
2021-02-26 22:24:49 +00:00
|
|
|
|
{
|
2021-02-26 22:26:17 +00:00
|
|
|
|
public override void PlaySocketAnimation()
|
2021-02-26 22:24:49 +00:00
|
|
|
|
=> AttachedObject.PlaySocketAnimation();
|
|
|
|
|
|
2021-02-26 22:26:17 +00:00
|
|
|
|
public override void PlayUnsocketAnimation()
|
2021-02-26 22:24:49 +00:00
|
|
|
|
=> AttachedObject.PlayUnsocketAnimation();
|
|
|
|
|
|
2021-02-26 22:26:17 +00:00
|
|
|
|
public override void OnCompleteUnsocket()
|
2021-02-26 22:24:49 +00:00
|
|
|
|
=> AttachedObject.OnCompleteUnsocket();
|
2021-03-07 20:12:38 +00:00
|
|
|
|
|
|
|
|
|
public NomaiRemoteCameraPlatform.ID GetRemoteCameraID()
|
|
|
|
|
=> AttachedObject.GetRemoteCameraID();
|
2021-02-26 22:24:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|