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