mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-25 06:35:45 +00:00
17 lines
368 B
C#
17 lines
368 B
C#
using OWML.Utils;
|
|
using QSB.WorldSync;
|
|
|
|
namespace QSB.QuantumSync
|
|
{
|
|
internal class QSBQuantumSocket : WorldObject
|
|
{
|
|
public QuantumSocket AttachedSocket { get; private set; }
|
|
|
|
public void Init(QuantumSocket quantumSocket, int id)
|
|
{
|
|
ObjectId = id;
|
|
AttachedSocket = quantumSocket;
|
|
AttachedSocket.GetType().SetValue("_randomYRotation", false);
|
|
}
|
|
}
|
|
} |