mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-26 09:35:26 +00:00
14 lines
259 B
C#
14 lines
259 B
C#
using QSB.Player;
|
|
|
|
namespace QSB.QuantumSync.WorldObjects
|
|
{
|
|
internal class QSBEyeProxyQuantumMoon : QSBQuantumObject<EyeProxyQuantumMoon>
|
|
{
|
|
public override void Init()
|
|
{
|
|
ControllingPlayer = QSBPlayerManager.LocalPlayerId;
|
|
base.Init();
|
|
}
|
|
}
|
|
}
|