This commit is contained in:
Dustin Bensing 2013-07-14 11:06:19 +02:00
parent cc73f23776
commit a66ae35e1c
2 changed files with 15 additions and 0 deletions

5
.gitignore vendored
View File

@ -11,3 +11,8 @@
*.lai
*.la
*.a
#ide specific files
*.pro
*.user
*.directory

10
XInputSimulator/main.cpp Normal file
View File

@ -0,0 +1,10 @@
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
return 0;
}