12 lines
No EOL
338 B
C#
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; }
|
|
} |