22 lines
488 B
C++
22 lines
488 B
C++
#pragma once
|
|
#include <iostream>
|
|
|
|
struct Config {
|
|
int version = 1;
|
|
|
|
struct consoleLog {
|
|
bool JoinMessage = true;
|
|
bool LeftMessage = true;
|
|
bool DeathMessage = true;
|
|
} ConsoleLog;
|
|
|
|
struct fileLog {
|
|
bool Enabled = false;
|
|
std::string Path = "./logs/DeathLog.log";
|
|
} FileLog;
|
|
|
|
struct serverSideTranslation {
|
|
bool Enabled = false;
|
|
std::string Language = "en_US";
|
|
} ServerSideTranslation;
|
|
}; |