28 lines
530 B
Plaintext
28 lines
530 B
Plaintext
#ifndef _CJOYSTICK_HPP_
|
|
#define _CJOYSTICK_HPP_
|
|
|
|
/*** SDL Header Files ***/
|
|
#include <SDL.h>
|
|
|
|
/*** Custom Header Files ***/
|
|
#include "cInput.hpp"
|
|
|
|
/*** DLL Header File ***/
|
|
#include "dllExport.h"
|
|
|
|
namespace InputEngine {
|
|
class EXPORT_FROM_MYDLL cJoystick
|
|
{
|
|
public:
|
|
cJoystick();
|
|
~cJoystick();
|
|
|
|
///Functions
|
|
|
|
//Used when looking for keys that have been add to the check list
|
|
void JoystickCheck();
|
|
|
|
};/// END CLASS DEFINITION cJoystick
|
|
}/// END NAMESPACE DEFINITION InputEngine
|
|
#endif/// END IFNDEF _CJOYSTICK_HPP_
|