Updated rechten voor speler. Settings toegevoegd en onderdelen voor game1 toegevoegd.

This commit is contained in:
Frank
2026-01-05 17:07:32 +01:00
parent af13be2196
commit 10c3dbc066
29 changed files with 531 additions and 17 deletions

View File

@@ -26,9 +26,6 @@ class Player
#[ORM\Column]
private ?int $screen = null;
#[ORM\Column(type: 'json', nullable: true)]
private ?array $level = null;
public function getId(): ?int
{
return $this->id;
@@ -69,16 +66,4 @@ class Player
return $this;
}
public function getLevel(): ?array
{
return $this->level;
}
public function setLevel(?array $level): static
{
$this->level = $level;
return $this;
}
}