So,I need little help in D3D Menu.
Error on d3d9dev.cpp. #include "Hacks.h". Error:cannot open source file "Hacks.h"
Error on d3d9dev.cpp. Hacks hacks; Error:identifier "Hacks" is undefined
Someone help me to fix these? I really need help.
Code:
d3d9dev.cpp Include source:
#include <iostream>
#include <windows.h>
#include "main.h"
#include "d3d9.h"
#include "d3dx9.h"
#include <ctime>
#include "Hacks.h"
Hacks hacks;
Code:
Hacks.h source:
#pragma once
#include <Windows.h>
#include "d3d9.h"
#include <ctime> //for the clock
#include <iostream>
#define D3DHOOK_TEXTURES
#define MAX_MENU_ITEMS 6
#define WALLHACK 0
#define CUSTOM_CROSSHAIR 1
#define NO_RECOIL 2
#define UNLIM_AMMO 3
#define AUTO_FIRE 4
#define HIDE_MENU 5
class Hacks
{
public:
int m_Stride;
void Hacks::CreateFont(IDirect3DDevice9 *d3dDevice, std::string choiceFont);
void Hacks::InitializeMenuItems();
void Hacks::Draw_Text(LPCSTR TextToDraw, int x, int y, D3DCOLOR Colour);
void Hacks::DrawMenu(IDirect3DDevice9 *d3dDevice);
void Hacks::DrawFilledRect(int x, int y, int w, int h, D3DCOLOR color, IDirect3DDevice9* d3dDevice);
void Hacks::DrawBorderBox( int x, int y, int w, int h, int thickness, D3DCOLOR Colour, IDirect3DDevice9 *d3dDevice);
void Hacks::KeyboardInput();
LPDIRECT3DTEXTURE9 texRed;
LPDIRECT3DTEXTURE9 texGreen;
LPDIRECT3DTEXTURE9 texBlue;
LPDIRECT3DTEXTURE9 texWhite;
D3DVIEWPORT9 g_ViewPort;
LPD3DXFONT m_font;
struct d3dMenuHack
{
bool on;
std::string name;
};
d3dMenuHack hack[MAX_MENU_ITEMS];
};
---------- Post added at 12:14 PM ---------- Previous post was at 10:57 AM ----------
Comments? :P