mirror of
https://github.com/livingcomputermuseum/ContrAlto.git
synced 2026-01-17 16:44:29 +00:00
12 lines
274 B
C#
12 lines
274 B
C#
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();
|
|
}
|
|
}
|