mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-29 12:21:25 +00:00
53974485c9
* add stuff * extract patches * extract worldobjects (#241) * add spiral sync * cleanup * cleanup * fix * rename * add computers * remove qnet flagshelper * Update README.md * cleanup
15 lines
344 B
C#
15 lines
344 B
C#
using OWML.Utils;
|
|
using QSB.WorldSync;
|
|
|
|
namespace QSB.QuantumSync.WorldObjects
|
|
{
|
|
internal class QSBQuantumSocket : WorldObject<QuantumSocket>
|
|
{
|
|
public override void Init(QuantumSocket quantumSocket, int id)
|
|
{
|
|
ObjectId = id;
|
|
AttachedObject = quantumSocket;
|
|
AttachedObject.GetType().SetValue("_randomYRotation", false);
|
|
}
|
|
}
|
|
} |