mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-29 00:32:43 +00:00
16 lines
329 B
C#
16 lines
329 B
C#
using HarmonyLib;
|
|
using QSB.Patches;
|
|
|
|
/*
|
|
* For those who come here,
|
|
* leave while you still can.
|
|
*/
|
|
|
|
namespace QSB.EchoesOfTheEye.LightSensorSync.Patches;
|
|
|
|
[HarmonyPatch(typeof(SingleLightSensor))]
|
|
internal class PlayerLightSensorPatches : QSBPatch
|
|
{
|
|
public override QSBPatchTypes Type => QSBPatchTypes.OnClientConnect;
|
|
}
|