quantum-space-buddies/QSB/QuantumSync/WorldObjects/QSBQuantumSocket.cs

10 lines
190 B
C#
Raw Normal View History

2021-12-27 05:05:07 +00:00
using QSB.WorldSync;
2020-12-22 21:39:53 +00:00
namespace QSB.QuantumSync.WorldObjects
2020-12-22 21:39:53 +00:00
{
2020-12-23 22:43:05 +00:00
internal class QSBQuantumSocket : WorldObject<QuantumSocket>
2020-12-22 21:39:53 +00:00
{
public override bool ShouldDisplayLabel() => false;
2020-12-22 21:39:53 +00:00
}
2021-12-27 04:57:34 +00:00
}