Core/World: added underlying types to world config enums

This commit is contained in:
Ovahlord
2023-09-12 12:46:33 +02:00
committed by Shauren
parent fe2da02cc6
commit a5217f59b2

View File

@@ -86,7 +86,7 @@ enum WorldTimers
};
/// Configuration elements
enum WorldBoolConfigs
enum WorldBoolConfigs : uint32
{
CONFIG_DURABILITY_LOSS_IN_PVP = 0,
CONFIG_ADDON_CHANNEL,
@@ -181,7 +181,7 @@ enum WorldBoolConfigs
BOOL_CONFIG_VALUE_COUNT
};
enum WorldFloatConfigs
enum WorldFloatConfigs : uint32
{
CONFIG_GROUP_XP_DISTANCE = 0,
CONFIG_MAX_RECRUIT_A_FRIEND_DISTANCE,
@@ -206,7 +206,7 @@ enum WorldFloatConfigs
FLOAT_CONFIG_VALUE_COUNT
};
enum WorldIntConfigs
enum WorldIntConfigs : uint32
{
CONFIG_COMPRESSION = 0,
CONFIG_INTERVAL_SAVE,