mirror of
https://github.com/Siccity/xNode.git
synced 2025-12-20 09:16:01 +08:00
5 lines
104 B
C#
5 lines
104 B
C#
namespace XNode.Examples.LogicToy {
|
|
public interface ITimerTick {
|
|
void Tick(float timeDelta);
|
|
}
|
|
} |