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