rj-action-library/Runtime/Sensors/SensorInputHandler.cs

11 lines
157 B
C#

using Godot;
using System.Collections.Generic;
namespace Rokojori
{
public interface SensorInputHandler
{
void _OnSensor( SensorEvent se );
}
}