mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-04 02:47:22 +00:00
13 lines
281 B
C#
13 lines
281 B
C#
namespace QSB.QuantumSync.WorldObjects;
|
|
|
|
internal class QSBEyeProxyQuantumMoon : QSBQuantumObject<EyeProxyQuantumMoon>
|
|
{
|
|
public override bool HostControls => true;
|
|
|
|
public override void SendInitialState(uint to)
|
|
{
|
|
base.SendInitialState(to);
|
|
|
|
// todo SendInitialState
|
|
}
|
|
} |