mirror of
https://github.com/rrika/cdcEngineDXHR.git
synced 2024-11-26 23:10:20 +00:00
13 lines
168 B
C
13 lines
168 B
C
|
#pragma once
|
||
|
// #include "../types.h"
|
||
|
|
||
|
namespace cdc {
|
||
|
|
||
|
class RenderExternalResource {
|
||
|
// uint32_t dword4;
|
||
|
public:
|
||
|
virtual ~RenderExternalResource() = default;
|
||
|
};
|
||
|
|
||
|
}
|