#ifndef CAMERA_H #define CAMERA_H #include typedef struct { sf::Vector2f pos; float direction; unsigned int resolution; float fov; } Camera; void camera_update(Camera* camera, sf::RenderWindow* window, float t); #endif