mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-11 09:38:48 +00:00
13 lines
260 B
C#
13 lines
260 B
C#
namespace QSB.QuantumSync.WorldObjects
|
|
{
|
|
internal class QSBQuantumMoon : QSBQuantumObject<QuantumMoon>
|
|
{
|
|
public override void Init(QuantumMoon moonObject, int id)
|
|
{
|
|
ObjectId = id;
|
|
AttachedObject = moonObject;
|
|
ControllingPlayer = 1u;
|
|
}
|
|
}
|
|
}
|