Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/model/game_player_model.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ pub struct GamePlayer {
pub jailed: bool,
pub balance: u256,
pub properties_owned: Array<u8>,
pub chance_jail_card: bool,
pub comm_free_card: bool,
pub total_houses_owned: u8,
pub total_hotels_owned: u8,
pub no_of_utilities: u8,
pub no_of_railways: u8,
pub no_section1: u8,
Expand Down Expand Up @@ -60,6 +64,10 @@ impl GamePlayerImpl of GamePlayerTrait {
is_bankrupt: false,
is_active: true,
properties_owned: array![],
chance_jail_card: false,
comm_free_card: false,
total_houses_owned: 0,
total_hotels_owned: 0,
no_of_utilities: 0,
no_of_railways: 0,
no_section1: 0,
Expand Down
Loading
Loading