blob: 92da49275e6164cc1e4c455571b8128a44342a01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: globals.cc
// Description: Global variables
#include "shared/pch.hh"
#include "shared/globals.hh"
entt::dispatcher globals::dispatcher;
float globals::fixed_frametime;
float globals::fixed_frametime_avg;
std::uint64_t globals::fixed_frametime_us;
std::size_t globals::fixed_framecount;
std::uint64_t globals::curtime;
|