style(D.2b): split two-statement line in importer wiring (review nit)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
ab3ab79380
commit
25be30b1a7
1 changed files with 2 additions and 1 deletions
|
|
@ -1814,7 +1814,8 @@ public sealed class GameWindow : IDisposable
|
|||
staminaText: () => (_vitalsVm!.StaminaCurrent, _vitalsVm.StaminaMax) is (uint c, uint m) ? $"{c}/{m}" : "",
|
||||
manaText: () => (_vitalsVm!.ManaCurrent, _vitalsVm.ManaMax) is (uint c, uint m) ? $"{c}/{m}" : "");
|
||||
// Offset beside the hand-authored window (at x=10) for an A/B visual comparison.
|
||||
imported.Root.Left = 200; imported.Root.Top = 30;
|
||||
imported.Root.Left = 200;
|
||||
imported.Root.Top = 30;
|
||||
_uiHost.Root.AddChild(imported.Root);
|
||||
Console.WriteLine("[D.2b] importer vitals window active (A/B vs hand-authored).");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue