-
-
Notifications
You must be signed in to change notification settings - Fork 49
iw4madminapplicationmisc LogPathGeneratorInfo
RaidMax edited this page May 21, 2023
·
1 revision
dto class for handling log path generation
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph IW4MAdmin.Application.Misc
IW4MAdmin.Application.Misc.LogPathGeneratorInfo[[LogPathGeneratorInfo]]
end
| Type | Name | Methods |
|---|---|---|
string |
BaseGameDirectorydirectory under the paths where data comes from by default fs_basegame |
get, set |
string |
BasePathDirectorybase game root path fs_basepath |
get, set |
string |
GameDirectoryoveride game directory plugin driven |
get, set |
string |
HomePathDirectorydirectory for local storage fs_homepath |
get, set |
bool |
IsOneLogindicates that the game does not log to the mods folder (when mod is loaded), but rather always to the fs_basegame directory |
get, set |
bool |
IsWindowsindicates if running on windows |
get, set |
string |
LogFilelog file name g_log |
get, set |
string |
ModDirectorygame director fs_game |
get, set |
dto class for handling log path generation
public LogPathGeneratorInfo()public string BaseGameDirectory { get; set; }directory under the paths where data comes from by default fs_basegame
public string BasePathDirectory { get; set; }base game root path fs_basepath
public string HomePathDirectory { get; set; }directory for local storage fs_homepath
public string GameDirectory { get; set; }overide game directory plugin driven
public string ModDirectory { get; set; }game director fs_game
public string LogFile { get; set; }log file name g_log
public bool IsWindows { get; set; }indicates if running on windows
public bool IsOneLog { get; set; }indicates that the game does not log to the mods folder (when mod is loaded), but rather always to the fs_basegame directory
Generated with ModularDoc