mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-09 20:51:05 +00:00
20 lines
397 B
C#
20 lines
397 B
C#
namespace ServerManagerTool.Lib
|
|
{
|
|
public enum IniSections
|
|
{
|
|
// GameUserSettings.ini
|
|
GUS_ServerSettings,
|
|
GUS_ShooterGameUserSettings,
|
|
GUS_ScalabilityGroups,
|
|
GUS_SessionSettings,
|
|
GUS_GameSession,
|
|
GUS_MultiHome,
|
|
GUS_MessageOfTheDay,
|
|
|
|
// Game.ini
|
|
Game_ShooterGameMode,
|
|
|
|
// Misc
|
|
Custom,
|
|
}
|
|
}
|