mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-07 00:47:42 +00:00
9 lines
158 B
C++
9 lines
158 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
class ICapturedDataProvider
|
|
{
|
|
public:
|
|
virtual void GetCapturedData(const uint8_t** pCapturedData, size_t* pSize) = 0;
|
|
};
|