2021-05-24 19:18:44 +02:00
|
|
|
#ifndef INPUTTYPE_H
|
|
|
|
#define INPUTTYPE_H
|
|
|
|
|
2021-06-23 21:18:33 +02:00
|
|
|
#include <SFML/Window/Event.hpp>
|
2021-06-24 20:04:09 +02:00
|
|
|
#include "mathutils.h"
|
2021-05-24 19:18:44 +02:00
|
|
|
|
2021-06-23 21:18:33 +02:00
|
|
|
struct PlayerInput
|
2021-05-24 19:18:44 +02:00
|
|
|
{
|
2021-06-23 21:18:33 +02:00
|
|
|
microsec timestamp;
|
|
|
|
sf::Event event;
|
2021-05-24 19:18:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INPUTTYPE_H
|