35 lines
486 B
TypeScript
35 lines
486 B
TypeScript
|
|
|
||
|
|
module mod_vtm_aufbau
|
||
|
|
{
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author kcf <vidofnir@folksprak.org>
|
||
|
|
*/
|
||
|
|
export class klasse_verwerfer
|
||
|
|
implements schnittstelle_aktor
|
||
|
|
{
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author kcf <vidofnir@folksprak.org>
|
||
|
|
*/
|
||
|
|
public constructor()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author kcf <vidofnir@folksprak.org>
|
||
|
|
* @implementation
|
||
|
|
*/
|
||
|
|
public verwenden(figur : klasse_figur) : void
|
||
|
|
{
|
||
|
|
// TODO
|
||
|
|
console.warn("not implemented");
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|