Files
MI2Mario/src/entities/Enemys/Enemy.js
T
Pascal a726db1306 added entitys, enemys, bats and custom attack hitboxes for players
added map loading and one-way collision (needs to move to tiled attribute tho)

Signed-off-by: Pascal Syma <pascal@syma.dev>
2020-05-20 11:13:21 +02:00

13 lines
275 B
JavaScript

/*
* Copyright (c) 2020. Pascal Syma <pascal@syma.dev>
* All rights reserved.
*/
import Entity from "../Entity";
export default class Enemy extends Entity {
constructor(scene, spawnPoint, texture) {
super(scene, spawnPoint.x, spawnPoint.y, texture);
}
}