Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

24 lines
587 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "BlobHelperService.h"
#include <vector>
#define UE_API TEXTUREGRAPHENGINE_API
class BlobHasherService : public BlobHelperService
{
public:
UE_API BlobHasherService();
UE_API virtual ~BlobHasherService() override;
UE_API virtual AsyncJobResultPtr Tick() override;
UE_API virtual void Add(BlobRef BlobObj) override;
};
typedef std::shared_ptr<BlobHasherService> BlobHasherServicePtr;
typedef std::weak_ptr<BlobHasherService> BlobHasherServicePtrW;
#undef UE_API