mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
Implement xiv fixes into Dalamud.Boot (#857)
This commit is contained in:
parent
02dd1eddec
commit
75de126c9d
40 changed files with 41576 additions and 196 deletions
25
Dalamud.Boot/bootconfig.h
Normal file
25
Dalamud.Boot/bootconfig.h
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#pragma once
|
||||
|
||||
#include "utils.h"
|
||||
|
||||
namespace bootconfig {
|
||||
inline bool is_wait_messagebox() {
|
||||
return utils::get_env<bool>(L"DALAMUD_WAIT_MESSAGEBOX");
|
||||
}
|
||||
|
||||
inline bool is_show_console() {
|
||||
return utils::get_env<bool>(L"DALAMUD_SHOW_CONSOLE");
|
||||
}
|
||||
|
||||
inline bool is_wait_debugger() {
|
||||
return utils::get_env<bool>(L"DALAMUD_WAIT_DEBUGGER");
|
||||
}
|
||||
|
||||
inline bool is_veh_enabled() {
|
||||
return utils::get_env<bool>(L"DALAMUD_IS_VEH");
|
||||
}
|
||||
|
||||
inline bool is_veh_full() {
|
||||
return utils::get_env<bool>("DALAMUD_IS_VEH_FULL");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue