1
0
mirror of https://github.com/Siccity/xNode.git synced 2025-12-20 09:16:01 +08:00
xNode/Examples/LogicToy/ITimerTick.cs
2019-09-25 15:50:51 +02:00

5 lines
104 B
C#

namespace XNode.Examples.LogicToy {
public interface ITimerTick {
void Tick(float timeDelta);
}
}