summaryrefslogtreecommitdiffstats
path: root/game/shared/head.hh
blob: 57dd445d309e71017595b433d78a39714072afa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef SHARED_HEAD_HH
#define SHARED_HEAD_HH 1
#pragma once

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

// Client-side only - interpolated and previous head
struct HeadComponentIntr final : public HeadComponent {};
struct HeadComponentPrev final : public HeadComponent {};

#endif /* SHARED_HEAD_HH */