summaryrefslogtreecommitdiffstats
path: root/src/Entity.hpp
blob: 6df7983a4731761c54d0dd527323ec3cd7086c5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "Utility.hpp"
#include "Vector.hpp"

struct Entity {
    Uuid uuid;
    VectorF pos;
    VectorF vel;
    unsigned int entityId;
    double yaw;
    double pitch;
    static VectorF DecodeVelocity(short x, short y, short z);
};