[Fix] Code visual

This commit is contained in:
2026-02-28 19:25:26 +07:00
parent bee20fd1f8
commit e24b30743b
39 changed files with 2611 additions and 2687 deletions
+11 -12
View File
@@ -4,18 +4,17 @@ using YachtDice.Scoring;
namespace YachtDice.Modifiers
{
[Serializable]
public struct ModifierTarget
{
[Tooltip("Die face value (1-6). 0 = any/all dice.")]
[Range(0, 6)]
public int DieValue;
[Serializable]
public struct ModifierTarget
{
[Tooltip("Die face value (1-6). 0 = any/all dice.")]
[Range(0, 6)]
public int DieValue;
[Tooltip("Category this modifier targets.")]
public YachtCategory TargetCategory;
[Tooltip("Category this modifier targets.")]
public YachtCategory TargetCategory;
[Tooltip("If true, TargetCategory is used as a filter.")]
public bool HasCategoryFilter;
}
[Tooltip("If true, TargetCategory is used as a filter.")]
public bool HasCategoryFilter;
}
}