feat: NCS-69 Challenge request #3

Merged
shosho996 merged 35 commits from feat/NCS-69 into main 2026-05-12 22:38:57 +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,