10 lines
268 B
JavaScript
10 lines
268 B
JavaScript
|
import RetroAnimation from "./retro/RetroAnimation.js";
|
||
|
import Movable from "./Movable.js";
|
||
|
|
||
|
export default class Gisela extends Movable
|
||
|
{
|
||
|
constructor() {
|
||
|
const SCALE = 2;
|
||
|
super(new RetroAnimation('graphics/gisela-right.png', 1, SCALE, 1));
|
||
|
}
|
||
|
}
|