mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 03:40:46 +00:00
21 lines
518 B
C#
21 lines
518 B
C#
namespace QSB.ItemSync.WorldObjects.Items
|
|
{
|
|
internal class QSBScrollItem : QSBOWItem<ScrollItem>
|
|
{
|
|
public override void PlaySocketAnimation()
|
|
=> AttachedObject.PlaySocketAnimation();
|
|
|
|
public override void PlayUnsocketAnimation()
|
|
=> AttachedObject.PlayUnsocketAnimation();
|
|
|
|
public override void OnCompleteUnsocket()
|
|
=> AttachedObject.OnCompleteUnsocket();
|
|
|
|
public void HideNomaiText()
|
|
=> AttachedObject.HideNomaiText();
|
|
|
|
public void ShowNomaiText()
|
|
=> AttachedObject.ShowNomaiText();
|
|
}
|
|
}
|