blob: e6aa17c5307995ca95195bb0ad1a330a19853be5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include <atomic>
struct DebugInfo {
static std::atomic_int totalSections;
static std::atomic_int renderSections;
static std::atomic_int readyRenderer;
static std::atomic_int gameThreadTime;
static std::atomic_int renderFaces;
};
|