mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-22 03:40:54 +00:00
cleanup
This commit is contained in:
parent
c5ce51e039
commit
b89f24d925
@ -2,7 +2,6 @@
|
||||
using QSB.ItemSync.WorldObjects;
|
||||
using QSB.Utility;
|
||||
using QSB.WorldSync;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace QSB.ItemSync
|
||||
|
@ -9,7 +9,7 @@
|
||||
base.Init(attachedObject, id);
|
||||
}
|
||||
|
||||
public override IQSBOWItem RemoveFromSocket()
|
||||
public override IQSBOWItem RemoveFromSocket()
|
||||
=> ItemManager.GetObject(AttachedObject.RemoveFromSocket());
|
||||
}
|
||||
}
|
||||
|
@ -1,11 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace QSB.ItemSync.WorldObjects
|
||||
namespace QSB.ItemSync.WorldObjects
|
||||
{
|
||||
class QSBSharedStone : QSBOWItem<SharedStone>
|
||||
internal class QSBSharedStone : QSBOWItem<SharedStone>
|
||||
{
|
||||
public override void Init(SharedStone attachedObject, int id)
|
||||
{
|
||||
@ -14,13 +9,13 @@ namespace QSB.ItemSync.WorldObjects
|
||||
base.Init(attachedObject, id);
|
||||
}
|
||||
|
||||
public override void PlaySocketAnimation()
|
||||
public override void PlaySocketAnimation()
|
||||
=> AttachedObject.PlaySocketAnimation();
|
||||
|
||||
public override void PlayUnsocketAnimation()
|
||||
public override void PlayUnsocketAnimation()
|
||||
=> AttachedObject.PlayUnsocketAnimation();
|
||||
|
||||
public override void OnCompleteUnsocket()
|
||||
public override void OnCompleteUnsocket()
|
||||
=> AttachedObject.OnCompleteUnsocket();
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
namespace QSB.ItemSync.WorldObjects
|
||||
{
|
||||
class QSBSharedStoneSocket : QSBOWItemSocket<SharedStoneSocket>
|
||||
internal class QSBSharedStoneSocket : QSBOWItemSocket<SharedStoneSocket>
|
||||
{
|
||||
public override void Init(SharedStoneSocket attachedObject, int id)
|
||||
{
|
||||
|
@ -1,6 +1,6 @@
|
||||
namespace QSB.QuantumSync.WorldObjects
|
||||
{
|
||||
class QSBQuantumMoon : QSBQuantumObject<QuantumMoon>
|
||||
internal class QSBQuantumMoon : QSBQuantumObject<QuantumMoon>
|
||||
{
|
||||
public override void Init(QuantumMoon moonObject, int id)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user