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

struct Head {
    glm::fvec3 angles;
    glm::fvec3 offset;
};

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