blob: 1bb3003f1d0b3d23fd1771a1388d00eed044fad3 (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include <chrono>
#include <string>
#define DEFAULT_LOCALE_ID "english"
const std::string DEFAULT_PREFIX = "!";
const auto START_TIME = std::chrono::steady_clock::now();
|