module mod_vtm_aufbau { /** * @author kcf */ export class klasse_befoerderer implements schnittstelle_aktor { /** * @author kcf */ private richtung : typ_richtung; /** * @author kcf */ public constructor(richtung : typ_richtung = 0) { this.richtung = richtung; } /** * @author kcf * @implementation */ public verwenden(figur : klasse_figur) : void { figur.bewegen(this.richtung); } } }