diff options
Diffstat (limited to 'Other/NodeEditorExamples/Assets/xNode-examples/Examples/LogicToy/ITimerTick.cs')
-rw-r--r-- | Other/NodeEditorExamples/Assets/xNode-examples/Examples/LogicToy/ITimerTick.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Other/NodeEditorExamples/Assets/xNode-examples/Examples/LogicToy/ITimerTick.cs b/Other/NodeEditorExamples/Assets/xNode-examples/Examples/LogicToy/ITimerTick.cs new file mode 100644 index 00000000..4507b180 --- /dev/null +++ b/Other/NodeEditorExamples/Assets/xNode-examples/Examples/LogicToy/ITimerTick.cs @@ -0,0 +1,5 @@ +namespace XNode.Examples.LogicToy { + public interface ITimerTick { + void Tick(float timeDelta); + } +}
\ No newline at end of file |