2020-02-11 21:20:11 +01:00
|
|
|
import RetroAnimation from "./retro/RetroAnimation.js";
|
|
|
|
import Movable from "./Movable.js";
|
2020-02-12 21:29:06 +01:00
|
|
|
import Setting from "./Setting.js";
|
2020-02-11 21:20:11 +01:00
|
|
|
|
|
|
|
export default class Gisela extends Movable
|
|
|
|
{
|
|
|
|
constructor() {
|
|
|
|
const SCALE = 2;
|
2020-02-12 21:29:06 +01:00
|
|
|
super(new RetroAnimation(Setting.GRAPHICS_LOCATION + 'gisela-right.png', 1, SCALE, 1));
|
2020-02-11 21:20:11 +01:00
|
|
|
}
|
|
|
|
}
|