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