This repository has been archived on 2022-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
patterns/observer/observer.d

7 lines
69 B
D
Raw Normal View History

2022-11-11 00:03:18 +00:00
module observer.observer;
interface Observer
{
2022-11-11 07:56:59 +00:00
void update();
2022-11-11 00:03:18 +00:00
}