summaryrefslogtreecommitdiff
path: root/lib/location.hpp
blob: b019b7a36fa85a3f403fccaa4fe606052c7e6af0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef LOCATION_H
#define LOCATION_H

#include <glm/glm.hpp>

class Location {
public:
	explicit Location(glm::vec3 pos = {}, glm::vec3 rot = {}) : pos {pos}, rot {rot} { }

	glm::vec3 pos;
	glm::vec3 rot;
};

#endif