summaryrefslogtreecommitdiffstats
path: root/game/shared/entity/head.hh
blob: 15ce7e552d15c69af36bcd6eba50608f5ad09084 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

namespace entity
{
struct Head {
    glm::fvec3 angles;
    glm::fvec3 offset;
};
} // namespace entity

namespace entity::client
{
// Client-side only - interpolated and previous head
struct HeadIntr final : public Head {};
struct HeadPrev final : public Head {};
} // namespace entity::client