public Move(Constants.MoveType type, Stats p1, Stats p2, float time) { typeOfMove = type; AttackerStats = p1; DefenderStats = p2; delayTime = time; }
public Move() { typeOfMove = C.MoveType.ATTACK; AttackerStats = null; DefenderStats = null; delayTime = 0.0f; }