14 lines
337 B
C++
14 lines
337 B
C++
/*
|
|
* Created by Brett Terpstra 6920201 on 17/10/22.
|
|
* Copyright (c) 2022 Brett Terpstra. All Rights Reserved.
|
|
*/
|
|
// Yes, globals are bad.
|
|
#include "engine/util/debug.h"
|
|
|
|
bool* haltExecution;
|
|
bool* pauseRaytracing;
|
|
bool* haltRaytracing;
|
|
|
|
namespace Raytracing {
|
|
std::unordered_map<std::string, std::shared_ptr<profiler>> profiles;
|
|
} |