[Kanimaji] Add settings to stroke removal function

This commit is contained in:
TennesseeTrash 2025-06-16 20:33:22 +02:00
parent c15045562e
commit 0c0a8e346c
4 changed files with 65 additions and 19 deletions

View file

@ -48,4 +48,14 @@ namespace Kanimaji
.DelayBetweenStrokes = 50ms,
};
}
RemovalSetttings RemovalSetttings::Default()
{
return RemovalSetttings {
.Style = StrokeStyle {
.Width = 3.0,
.Colour = RGB::FromHex("#000000"),
},
};
}
}