Package us.the.mac.board

Interface Summary
Board.EndGamePiece The EndGamePiece interface handles the callback for the type of piece that ends the game.

For Example: In games like Chess or Xiangqi, this interface is implemented by the King pieces.
BoardArchitecture.LoginCallback  
TimerCallback  
 

Class Summary
Board The Board class contains all added pieces, internal squares, and handles
the functions that make up the Android User Experience.

It is used as a parent class of other types of boards (Chess, Xiangqi, etc.),
and receives piece logic to provide the game functionality.
Board.LayoutParams  
Board.PGNEvent  
Board.Piece This class contains all the general functions of a piece.

It is used as a parent class of other types of pieces (Knight, Pawn, etc.),
and contains all the board data.
Board.Report  
Board.ServerConnection  
BoardArchitecture  
BoardArchitecture.GooglePlusFragment
Enum Summary
Board.Color The Color enum contains the color of a piece.

For Example: If a piece is White its value will be, Board.Color.WHITE.