-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoreconfiguration DefaultSettings
RaidMax edited this page May 21, 2023
·
1 revision
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Configuration
SharedLibraryCore.Configuration.DefaultSettings[[DefaultSettings]]
end
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IBaseConfiguration[[IBaseConfiguration]]
class SharedLibraryCore.Interfaces.IBaseConfiguration interfaceStyle;
end
SharedLibraryCore.Interfaces.IBaseConfiguration --> SharedLibraryCore.Configuration.DefaultSettings
Type | Name | Methods |
---|---|---|
string``[] |
AutoMessages |
get, set |
string``[] |
DisallowedClientNames |
get, set |
GameStringConfiguration |
GameStrings |
get, set |
GametypeConfiguration []
|
Gametypes |
get, set |
string``[] |
GlobalRules |
get, set |
MapConfiguration []
|
Maps |
get, set |
QuickMessageConfiguration []
|
QuickMessages |
get, set |
Returns | Name |
---|---|
IBaseConfiguration |
Generate () |
string |
Name () |
public DefaultSettings()
public virtual IBaseConfiguration Generate()
public virtual string Name()
public string AutoMessages { get; set; }
public string GlobalRules { get; set; }
public MapConfiguration Maps { get; set; }
public GametypeConfiguration Gametypes { get; set; }
public QuickMessageConfiguration QuickMessages { get; set; }
public string DisallowedClientNames { get; set; }
public GameStringConfiguration GameStrings { get; set; }
Generated with ModularDoc