blob: 3f5d6d16c17c9fdc41e747f6369c2ac65252836e (
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
|