C# Class Minesweeper.MineSweeperGame.Tile

Exibir arquivo Open project: NashXam/minesweeper

Public Properties

Property Type Description
col int
row int

Private Properties

Property Type Description

Public Methods

Method Description
Flag ( ) : void
PlaceMine ( ) : void
Question ( ) : void
Tile ( int c, int r ) : System
Uncover ( ) : void
Unflag ( ) : void
isCovered ( ) : bool
isFlagged ( ) : bool
isMine ( ) : bool
isQuestioned ( ) : bool
isUncovered ( ) : bool

Method Details

Flag() public method

public Flag ( ) : void
return void

PlaceMine() public method

public PlaceMine ( ) : void
return void

Question() public method

public Question ( ) : void
return void

Tile() public method

public Tile ( int c, int r ) : System
c int
r int
return System

Uncover() public method

public Uncover ( ) : void
return void

Unflag() public method

public Unflag ( ) : void
return void

isCovered() public method

public isCovered ( ) : bool
return bool

isFlagged() public method

public isFlagged ( ) : bool
return bool

isMine() public method

public isMine ( ) : bool
return bool

isQuestioned() public method

public isQuestioned ( ) : bool
return bool

isUncovered() public method

public isUncovered ( ) : bool
return bool

Property Details

col public_oe property

public int col
return int

row public_oe property

public int row
return int