#include "enemy.h"

enemy::enemy(float hp, float Level)
{
	//These are two statistics we will be using with our program
	float enemyHp = hp;
	float skillLevel = Level;


}


enemy::~enemy()
{
}