mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-04 03:39:55 +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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|