// Fill out your copyright notice in the Description page of Project Settings.

#pragma once

#include "HttpDownloader.h"
#include "ue4-assimp/ProceduralEntity.h"
#include "GLTFDownloader.generated.h"

/**
 * 
 */
UCLASS()
class MASTERTESTPROJECT_API UGLTFDownloader : public UHttpDownloader
{
	GENERATED_BODY()

private:
	AProceduralEntity* reference;

public:

	void GetGLTF(AProceduralEntity* Reference, FString &baseUrl, FString &Url);

	virtual void OnResponseReceived(FHttpRequestPtr Request, FHttpResponsePtr Response, bool bWasSuccessful);
	
};