1
0
mirror of https://github.com/livingcomputermuseum/ContrAlto.git synced 2026-01-25 11:45:59 +00:00

18 lines
391 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contralto
{
/// <summary>
/// Used by classes implementing devices that are clocked (i.e. that are dependent
/// on time passing in units of a single CPU clock.)
/// </summary>
public interface IClockable
{
void Clock();
}
}