11 lines
157 B
C#
11 lines
157 B
C#
|
|
||
|
using Godot;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
public interface SensorInputHandler
|
||
|
{
|
||
|
void _OnSensor( SensorEvent se );
|
||
|
}
|
||
|
}
|