mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-12-11 04:51:21 +04:00
10 lines
209 B
C#
10 lines
209 B
C#
|
|
namespace NResUI.Abstractions
|
|||
|
|
{
|
|||
|
|
public interface IUpdateReceiver
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Called before every UI render
|
|||
|
|
/// </summary>
|
|||
|
|
void OnUpdate(float delta);
|
|||
|
|
}
|
|||
|
|
}
|