mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-02-04 03:39:55 +00:00
14 lines
270 B
C#
14 lines
270 B
C#
|
using QSB.WorldSync;
|
|||
|
|
|||
|
namespace QSB.EchoesOfTheEye.LightSensorSync.WorldObjects
|
|||
|
{
|
|||
|
class QSBSingleLightSensor : WorldObject<SingleLightSensor>
|
|||
|
{
|
|||
|
public override void Init(SingleLightSensor sensor, int id)
|
|||
|
{
|
|||
|
ObjectId = id;
|
|||
|
AttachedObject = sensor;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|