Gisela and target point added.

This commit is contained in:
Mal
2020-02-11 21:20:11 +01:00
parent 3be3ffb89a
commit acd8b92731
10 changed files with 168 additions and 28 deletions

10
js/Gisela.js Normal file
View File

@@ -0,0 +1,10 @@
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));
}
}