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