the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 15 lines 393 B view raw
1#pragma once 2 3#include "TutorialConstraint.h" 4 5class InputConstraint : public TutorialConstraint 6{ 7private: 8 int m_inputMapping; // Should be one of the EControllerActions 9public: 10 virtual ConstraintType getType() { return e_ConstraintInput; } 11 12 InputConstraint(int mapping) : TutorialConstraint(-1), m_inputMapping( mapping ) {} 13 14 virtual bool isMappingConstrained(int iPad, int mapping); 15};