mirror of
https://github.com/Yours3lf/rpi-vk-driver.git
synced 2025-01-19 11:52:16 +01:00
20 lines
243 B
C++
20 lines
243 B
C++
#include <iostream>
|
|
#include <vector>
|
|
#include <algorithm>
|
|
#include <string.h>
|
|
|
|
#include "../inputHandler/inputHandler.h"
|
|
|
|
int main(void) {
|
|
initInputHandler();
|
|
|
|
while(true)
|
|
{
|
|
handleInput();
|
|
}
|
|
|
|
uninitInputHandler();
|
|
|
|
return 0;
|
|
}
|