- Game ID fixed

This commit is contained in:
Wiesner András 2024-09-25 09:22:23 +02:00
parent 42190c6cba
commit b34045a89d

View File

@ -13,7 +13,7 @@ class Game extends AutoStoring
public const CURRENT_GAME_VERSION = 2; // MUST BE INCREMENTED!! public const CURRENT_GAME_VERSION = 2; // MUST BE INCREMENTED!!
// -------- // --------
private int $_id; // Game's ID private int $id; // Game's ID
private string $name; // Game's name private string $name; // Game's name
private string $owner; // Game's owner private string $owner; // Game's owner
private array $contributors; // Contributors to the game private array $contributors; // Contributors to the game
@ -291,7 +291,7 @@ class Game extends AutoStoring
public function getId(): int public function getId(): int
{ {
return $this->_id; return $this->id;
} }
public function isGameFileIsPresent(): bool public function isGameFileIsPresent(): bool