13 lines
205 B
C++
13 lines
205 B
C++
#pragma once
|
|
|
|
// used: call virtual function
|
|
#include "../../utilities/memory.h"
|
|
|
|
// forward declarations
|
|
struct IDXGISwapChain;
|
|
|
|
class ISwapChainDx11
|
|
{
|
|
MEM_PAD(0x170);
|
|
IDXGISwapChain* pDXGISwapChain;
|
|
}; |