Archived
Private
Public Access
1
0

Update 29.10.2022

This commit is contained in:
2022-10-29 18:17:27 +02:00
parent 2a1d18cb9d
commit 494fb2d8c5
355 changed files with 408588 additions and 155997 deletions

View File

@@ -0,0 +1,21 @@
namespace Nexd.ESX.Server
{
public static partial class ESX
{
public static partial class Config
{
public static dynamic Raw => ESX.Raw.Config ?? (ESX.Raw.Config);
public static string Locale => Raw.Locale;
public static string[] Accounts => new string[] { Raw.Accounts.bank, Raw.Accounts.money, Raw.Accounts.black_money };
public static dynamic StartingAccountMoney => Raw.StartingAccountMoney;
public static bool EnableSocietyPayouts => Raw.EnableSocietyPayouts;
public static bool EnableHud => Raw.EnableHud;
public static int MaxWeight => Raw.MaxWeight;
public static int PaycheckInterval => Raw.PaycheckInterval;
public static bool EnableDebug => Raw.EnableDebug;
}
}
}