mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-10 15:53:19 +00:00
14 lines
314 B
C#
14 lines
314 B
C#
namespace QSB.QuantumSync.WorldObjects
|
|
{
|
|
internal class QSBEyeProxyQuantumMoon : QSBQuantumObject<EyeProxyQuantumMoon>
|
|
{
|
|
public override void Init(EyeProxyQuantumMoon moonObject, int id)
|
|
{
|
|
ObjectId = id;
|
|
AttachedObject = moonObject;
|
|
ControllingPlayer = 1u;
|
|
base.Init(moonObject, id);
|
|
}
|
|
}
|
|
}
|