summaryrefslogtreecommitdiffstats
path: root/src/DebugInfo.hpp
blob: a29a056112a7606d92a002b5c309abb152f59856 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#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;
};