COSC-3P98-Final-Project/include/render/camera.h

19 lines
367 B
C
Raw Normal View History

2023-02-11 16:26:47 -05:00
/*
* Created by Brett on 11/02/23.
* Licensed under GNU General Public License V3.0
* See LICENSE file for license detail
*/
#ifndef FINALPROJECT_CAMERA_H
#define FINALPROJECT_CAMERA_H
#include <render/window.h>
namespace fp::camera {
void update();
2023-03-05 15:21:35 -05:00
const blt::vec3& getPosition();
const blt::vec3& getRotation();
2023-02-11 16:26:47 -05:00
}
#endif //FINALPROJECT_CAMERA_H