server-master/srcs/WingsAPI.Game/SnackFood/SnackFoodConfiguration.cs
2026-02-10 18:21:30 +01:00

12 lines
No EOL
338 B
C#

namespace WingsEmu.Game.SnackFood;
public class SnackFoodConfiguration
{
public int DelayBetweenSnack { get; set; }
public int DelayBetweenFood { get; set; }
public int SnackSoftCap { get; set; }
public int FoodSoftCap { get; set; }
public int SnackHardCap { get; set; }
public int FoodHardCap { get; set; }
}