mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-22 20:25:34 +00:00
restructure codebase according to vcproj filters
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include "TutorialConstraint.h"
|
||||
|
||||
class InputConstraint : public TutorialConstraint {
|
||||
private:
|
||||
int m_inputMapping; // Should be one of the EControllerActions
|
||||
public:
|
||||
virtual ConstraintType getType() { return e_ConstraintInput; }
|
||||
|
||||
InputConstraint(int mapping)
|
||||
: TutorialConstraint(-1), m_inputMapping(mapping) {}
|
||||
|
||||
virtual bool isMappingConstrained(int iPad, int mapping);
|
||||
};
|
||||
Reference in New Issue
Block a user