mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-23 01:25:51 +00:00
9 lines
154 B
C++
9 lines
154 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
class IHashProvider
|
|
{
|
|
public:
|
|
virtual void GetHash(unsigned hashIndex, const uint8_t** pHash, size_t* pSize) = 0;
|
|
};
|