Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/giginet/gccontrollerwrapper
GameController.framework for C++
https://github.com/giginet/gccontrollerwrapper
Last synced: about 2 months ago
JSON representation
GameController.framework for C++
- Host: GitHub
- URL: https://github.com/giginet/gccontrollerwrapper
- Owner: giginet
- Created: 2014-01-28T14:27:59.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-28T15:19:35.000Z (almost 11 years ago)
- Last Synced: 2024-10-14T09:53:31.698Z (3 months ago)
- Language: C
- Homepage:
- Size: 80.7 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GCController Wrapper
iOS GameController.framework wrapper for C++
# Usage
```cpp
auto controller = iOSGamePad::Controller::controllers->at(0);
controller->getGamepad()->getButtonA()->setValueChangedHandler([&](iOSGamePad::ControllerButtonInput *, float, bool) {
std::cout << "press button A!!!" << std::endl;
});
```