libER 0.1.4.2
ELDEN RING API library
Loading...
Searching...
No Matches
time.hpp
Go to the documentation of this file.
1
8#pragma once
9
10#include <cstdint>
11
12namespace from {
13namespace FD4 {
20struct FD4Time {
21 virtual ~FD4Time() noexcept;
22
27 float time = 0.0f;
28};
29
38 uint64_t year : 12;
39 uint64_t milliseconds : 10;
40 uint64_t month : 4;
41 uint64_t dayOfWeek : 3;
42 uint64_t day : 5;
43 uint64_t hour : 5;
44 uint64_t minute : 6;
45 uint64_t second : 6;
47};
48} // namespace FD4
49} // namespace from
A packed 64-bit SYSTEMTIME structure.
Definition time.hpp:36
A basic floating point time class.
Definition time.hpp:20
float time
The time.
Definition time.hpp:27