fix: NCWF-1 401 #5

Merged
shosho996 merged 36 commits from fix/NCWF-1 into main 2026-05-12 23:11:20 +02:00
Showing only changes of commit fd8ac63dc3 - Show all commits
@@ -30,6 +30,21 @@ interface WindowCell {
style: Record<string, string>;
}
interface Star {
style: Record<string, string>;
}
interface BackgroundBuilding {
style: Record<string, string>;
}
interface WindowCell {
state: 'off' | 'on';
color?: string;
glowColor?: string;
style: Record<string, string>;
}
@Component({
selector: 'app-welcome',
standalone: true,