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

11 lines
157 B
C#
Raw Normal View History

2025-01-03 12:09:23 +00:00
using Godot;
using System.Collections.Generic;
namespace Rokojori
{
public interface SensorInputHandler
{
void _OnSensor( SensorEvent se );
}
}