mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
15 lines
272 B
C++
15 lines
272 B
C++
#pragma once
|
|
|
|
#include "CompatVtable.h"
|
|
#include "Direct3dVtblVisitor.h"
|
|
|
|
namespace Direct3d
|
|
{
|
|
template <typename TDirect3d>
|
|
class Direct3d : public CompatVtable<Direct3d<TDirect3d>, TDirect3d>
|
|
{
|
|
public:
|
|
static void setCompatVtable(Vtable<TDirect3d>& vtable);
|
|
};
|
|
}
|