mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-27 03:35:20 +00:00
18 lines
367 B
C#
18 lines
367 B
C#
using QSB.WorldSync;
|
|
using System;
|
|
|
|
namespace QSB.EchoesOfTheEye.LightSensorSync.WorldObjects;
|
|
|
|
internal class QSBLightSensor : WorldObject<SingleLightSensor>
|
|
{
|
|
public bool LocallyIlluminated;
|
|
|
|
public Action OnDetectLocalLight;
|
|
public Action OnDetectLocalDarkness;
|
|
|
|
public override void SendInitialState(uint to)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|