VocalEasel/Sources/VLDebugFlags.h

25 lines
359 B
C
Raw Permalink Normal View History

2007-08-18 16:12:51 +00:00
//
// File: VLDebugFlags.h - Runtime debugging flags
//
// Author(s):
//
// (MN) Matthias Neeracher
//
// Copyright © 2007 Matthias Neeracher
//
#include <stdint.h>
class VLDebugFlags {
public:
static void Update();
static bool ShowDebugMenu() { return sFlags & 1; }
private:
static uint32_t sFlags;
};
// Local Variables:
// mode:C++
// End: