mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-25 15:35:22 +00:00
14 lines
283 B
C#
14 lines
283 B
C#
using QSB.WorldSync;
|
|
|
|
namespace QSB.QuantumSync.WorldObjects
|
|
{
|
|
internal class QSBQuantumShuffleObject : WorldObject<QuantumShuffleObject>
|
|
{
|
|
public override void Init(QuantumShuffleObject shuffleObject, int id)
|
|
{
|
|
ObjectId = id;
|
|
AttachedObject = shuffleObject;
|
|
}
|
|
}
|
|
}
|