21 lines
336 B
C
21 lines
336 B
C
|
#pragma once
|
||
|
|
||
|
// Possibly switch over to using pre compiled headers for this project.
|
||
|
|
||
|
/*
|
||
|
#include "imgui.h"
|
||
|
#include "imgui_impl_dx9.h"
|
||
|
|
||
|
#if _WIN32
|
||
|
#include "imgui_impl_win32.h"
|
||
|
#include <Windows.h>
|
||
|
#include "../util/keystates.h"
|
||
|
#endif
|
||
|
|
||
|
#include <d3d9.h>
|
||
|
#include <tchar.h>
|
||
|
|
||
|
#include <string>
|
||
|
#include <iostream>
|
||
|
#include <fstream>
|
||
|
*/
|