43 lines
590 B
TypeScript
43 lines
590 B
TypeScript
|
|
module mod_vtm_aufbau
|
|
{
|
|
|
|
/**
|
|
* @author kcf <vidofnir@folksprak.org>
|
|
*/
|
|
export class klasse_annehmer
|
|
implements schnittstelle_aktor
|
|
{
|
|
|
|
/**
|
|
* @author kcf <vidofnir@folksprak.org>
|
|
*/
|
|
public constructor()
|
|
{
|
|
}
|
|
|
|
|
|
/**
|
|
* @author kcf <vidofnir@folksprak.org>
|
|
* @implementation
|
|
*/
|
|
public drehen() : void
|
|
{
|
|
}
|
|
|
|
|
|
/**
|
|
* @author kcf <vidofnir@folksprak.org>
|
|
* @implementation
|
|
*/
|
|
public verwenden(figur : klasse_figur) : void
|
|
{
|
|
figur.annehmen();
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|