Files
DeathMessages/src/Config.h
T
2024-05-26 06:40:52 +08:00

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;
};