mirror of
https://github.com/izzy2lost/vba10.git
synced 2026-03-26 18:15:30 -07:00
17 lines
213 B
C++
17 lines
213 B
C++
#ifndef ONFRAMEBUFFER_H_
|
|
#define ONFRAMEBUFFER_H_
|
|
|
|
#include <D3D11.h>
|
|
#include <directxmath.h>
|
|
|
|
using namespace DirectX;
|
|
|
|
namespace Engine
|
|
{
|
|
struct OnFrameBuffer
|
|
{
|
|
XMMATRIX world;
|
|
};
|
|
}
|
|
|
|
#endif |