aboutsummaryrefslogtreecommitdiff
path: root/source/core/entities/Sekeleton.hx
blob: b5039b24ecfe9397a4b96cb9c869034389a04421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package core.entities;

import core.enums.EnityTypes.EntityType;
import flixel.util.FlxColor;
import utils.Debug;

class Skeleton extends Entity
{
	public function new(x:Float, y:Float)
	{
		super(x, y, EntityType.ENEMY);
		makeGraphic(16, 16, FlxColor.RED);
		Debug.log("Skeleton Spawned");
	}

	override public function update(dt:Float)
	{
		super.update(dt);
	}
}