This commit is contained in:
Boki 2026-03-03 12:54:30 -05:00
parent a8341e8232
commit a8c43ba7e2
43 changed files with 2618 additions and 48 deletions

View file

@ -0,0 +1,11 @@
namespace Roboto.Core;
public class CombatSettings
{
public int GlobalCooldownMs { get; set; } = 500;
public float AttackRange { get; set; } = 600f;
public float SafeRange { get; set; } = 400f;
public bool KiteEnabled { get; set; }
public float KiteRange { get; set; } = 300f;
public int KiteDelayMs { get; set; } = 200;
}