34 lines
456 B
TypeScript
34 lines
456 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 verwenden(figur : klasse_figur) : void
|
||
|
|
{
|
||
|
|
figur.annehmen();
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|