Holy fucking shit I don't want to work on this. Sibly, you son of a ...

This commit is contained in:
Michael Fabain Dirks
2016-05-07 22:49:54 +02:00
parent b75ca4142c
commit aa22d21fb5
2577 changed files with 166501 additions and 194685 deletions
+6 -10
View File
@@ -1,19 +1,17 @@
#pragma once
#ifndef GXINPUT_H
#define GXINPUT_H
#include <dinput.h>
#include "std.h"
#include "gxdevice.h"
#include "GraphicsRuntime.h"
class gxRuntime;
class gxInput{
public:
gxRuntime *runtime;
IDirectInput7 *dirInput;
LPDIRECTINPUT8 dirInput;
gxInput( gxRuntime *runtime,IDirectInput7 *di );
gxInput( gxRuntime *runtime, LPDIRECTINPUT8 di );
~gxInput();
void reset();
@@ -45,6 +43,4 @@ public:
int getJoystickType( int port )const;
int numJoysticks()const;
int toAscii( int key )const;
};
#endif
};