7 lines
82 B
D
7 lines
82 B
D
|
module observer.displayelement;
|
||
|
|
||
|
interface DisplayElement
|
||
|
{
|
||
|
void display();
|
||
|
}
|