rokojori_action_library/Runtime/Sensors/SensorInputHandler.cs

12 lines
184 B
C#

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