blob: 3c3462ba3b86e252ee319e75b2d63f23fd8c9b85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <chrono>
#include <string>
#define DEFAULT_LOCALE_ID "english"
#ifdef DEBUG_MODE
const std::string DEFAULT_PREFIX = "~";
#else
const std::string DEFAULT_PREFIX = "!";
#endif
const auto START_TIME = std::chrono::steady_clock::now();
|