trace.h
1 #pragma once 2 3 #include <common/Telemetry/TraceBase.h> 4 5 class Trace : public telemetry::TraceBase 6 { 7 public: 8 // Log if the user has MousePointerCrosshairs enabled or disabled 9 static void EnableMousePointerCrosshairs(const bool enabled) noexcept; 10 11 // Log that the user activated the module by having the crosshairs be drawn 12 static void StartDrawingCrosshairs() noexcept; 13 };