12 lines
172 B
C#
12 lines
172 B
C#
|
|
|
||
|
|
using Godot;
|
||
|
|
using Rokojori;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace Rokojori;
|
||
|
|
|
||
|
|
public interface UIFocusProcessor
|
||
|
|
{
|
||
|
|
public void OnFocusProcess( double delta );
|
||
|
|
}
|