summaryrefslogtreecommitdiff
path: root/Other/NodeEditorExamples/Assets/xNode-examples/Examples/LogicToy/ITimerTick.cs
blob: 4507b18023c2971485c706b153c2ef49ec5ff40e (plain)
1
2
3
4
5
namespace XNode.Examples.LogicToy {
	public interface ITimerTick {
		void Tick(float timeDelta);
	}
}