mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-29 12:21:25 +00:00
13 lines
279 B
C#
13 lines
279 B
C#
namespace QSB.QuantumSync.WorldObjects;
|
|
|
|
public class QSBEyeProxyQuantumMoon : QSBQuantumObject<EyeProxyQuantumMoon>
|
|
{
|
|
public override bool HostControls => true;
|
|
|
|
public override void SendInitialState(uint to)
|
|
{
|
|
base.SendInitialState(to);
|
|
|
|
// todo SendInitialState
|
|
}
|
|
} |