group2 0.1.0
CSE 125 Group 2
Loading...
Searching...
No Matches
Position.hpp
Go to the documentation of this file.
1
3
4#pragma once
5
6#include <glm/vec3.hpp>
7
9struct Position
10{
11 glm::vec3 value{0.0f, 0.0f, 0.0f};
12};
World-space position of an entity, in game units.
Definition Position.hpp:10
glm::vec3 value
XYZ position (Y-up, Quake units).
Definition Position.hpp:11