Added header guards
This commit is contained in:
parent
2b1c3b2889
commit
eb68eceab5
|
@ -10,6 +10,9 @@
|
||||||
|
|
||||||
#include "Project.h"
|
#include "Project.h"
|
||||||
|
|
||||||
|
#ifndef UIJoystickPSP_h
|
||||||
|
#define UIJoystickPSP_h
|
||||||
|
|
||||||
enum joyDirection {
|
enum joyDirection {
|
||||||
joyUp,
|
joyUp,
|
||||||
joyDown,
|
joyDown,
|
||||||
|
@ -33,3 +36,5 @@ public:
|
||||||
UIJoystickPSP(int xAxisPin, int yAxisPin);
|
UIJoystickPSP(int xAxisPin, int yAxisPin);
|
||||||
joyDirection direction();
|
joyDirection direction();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
Reference in a new issue