ecs refactor

This commit is contained in:
Matthieu Jolimaitre 2024-04-09 04:25:34 +02:00
parent 28b026a614
commit f2e5d13000
8 changed files with 410 additions and 170 deletions

View file

@ -0,0 +1,6 @@
export class CompDisplay {
display;
constructor(display: string) {
this.display = display;
}
}