mirror of
https://github.com/Bloodysharp/ImGui-Loader.git
synced 2024-12-22 16:07:25 +08:00
20 lines
413 B
C++
20 lines
413 B
C++
#pragma once
|
|
#include<string>
|
|
#include<sstream>
|
|
#include<vector>
|
|
#include<math.h>
|
|
|
|
#include <d3dx9.h>
|
|
#include <d3d9.h>
|
|
|
|
#pragma comment (lib, "d3d9.lib")
|
|
#pragma comment (lib, "d3dx9.lib")
|
|
|
|
#define IMGUI_DEFINE_MATH_OPERATORS
|
|
#include "imgui.h"
|
|
#include "imgui_internal.h"
|
|
#include "imgui_impl_dx9.h"
|
|
#include "imgui_impl_win32.h"
|
|
|
|
|
|
extern void DrawBackgroundBlur(ImDrawList* drawList, IDirect3DDevice9* device); |