feat: render interactive ashen fields world

This commit is contained in:
Bastian Wagner
2026-08-19 08:25:42 +02:00
parent fce03e220d
commit 1e2bfe6e4b
21 changed files with 1933 additions and 17 deletions

View File

@@ -1,8 +1,11 @@
import { Component } from '@angular/core';
import { Component, inject } from '@angular/core';
import { WorldStore } from '../../features/world/world.store';
@Component({
selector: 'app-context-panel',
templateUrl: './context-panel.component.html',
styleUrl: './context-panel.component.scss',
})
export class ContextPanelComponent {}
export class ContextPanelComponent {
protected readonly worldStore = inject(WorldStore);
}