14 lines
259 B
C#
Raw Normal View History

using QSB.Player;
namespace QSB.QuantumSync.WorldObjects
2021-03-13 19:54:36 +00:00
{
internal class QSBEyeProxyQuantumMoon : QSBQuantumObject<EyeProxyQuantumMoon>
{
public override void Init()
2021-03-13 19:54:36 +00:00
{
ControllingPlayer = QSBPlayerManager.LocalPlayerId;
base.Init();
2021-03-13 19:54:36 +00:00
}
}
}