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

import core.enums.EnityTypes;
import flixel.FlxSprite;

class Entity extends FlxSprite
{
	public var entityType:EntityType;

	public function new(x:Float, y:Float, _entityType:EntityType)
	{
		super(x, y);
		this.entityType = _entityType;
	}

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