2
0

Log.h 374 B

1234567891011
  1. // Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
  2. // SPDX-FileCopyrightText: 2021 Jorrit Rouwe
  3. // SPDX-License-Identifier: MIT
  4. #pragma once
  5. /// Print an error message and terminate the application
  6. extern void FatalError [[noreturn]] (const char *inFMT, ...);
  7. /// Implementation of trace that traces to the TTY
  8. extern void TraceImpl(const char *inFMT, ...);