21 lines
401 B
C++
21 lines
401 B
C++
#include <iostream>
|
|
#include <SFML/Window.hpp>
|
|
#include "input.h"
|
|
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
cout << "Hello World!" << endl;
|
|
sf::Window* window= new sf::Window(sf::VideoMode(400,200),"testSparrowInput");
|
|
Input myInput(window, "test.esk",5);
|
|
bool run = true;
|
|
while(run){
|
|
//myInput.updateEvents();
|
|
}
|
|
vector<int> actions;
|
|
actions.size();
|
|
return 0;
|
|
}
|
|
|