GameOfLife/ViewModel/ITimer.cs (
8
lines of code) (
raw
):
using System; namespace GameOfLife.ViewModel { public interface ITimer { event Action Tick; } }