poe2-bot/src/Roboto.Core/FlaskSettings.cs
2026-03-03 12:54:30 -05:00

10 lines
356 B
C#

namespace Roboto.Core;
public class FlaskSettings
{
public float LifeFlaskThreshold { get; set; } = 50f;
public float ManaFlaskThreshold { get; set; } = 50f;
public int FlaskCooldownMs { get; set; } = 4000;
public ushort LifeFlaskScanCode { get; set; } = 0x02; // Key1
public ushort ManaFlaskScanCode { get; set; } = 0x03; // Key2
}