mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
10 lines
140 B
TypeScript
10 lines
140 B
TypeScript
export interface Clock {
|
|
now(): Date;
|
|
}
|
|
|
|
export class DateClock implements Clock {
|
|
now(): Date {
|
|
return new Date();
|
|
}
|
|
}
|