Class MoveSelectInfo
Inheritance
System.Object
MoveSelectInfo
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: PonzianiComponents
Assembly: PonzianiComponents.dll
Syntax
public class MoveSelectInfo
Constructors
| Improve this Doc View SourceMoveSelectInfo(String, Position, ExtendedMove, Game, Int32)
Declaration
public MoveSelectInfo(string scoresheetId, Position position, ExtendedMove move, Game game, int moveIndex)
Parameters
Type | Name | Description |
---|---|---|
System.String | scoresheetId | |
Position | position | |
ExtendedMove | move | |
Game | game | |
System.Int32 | moveIndex |
Properties
| Improve this Doc View SourceGame
A game, created out of the variation, where the selected move belongs to
Declaration
public Game Game { get; set; }
Property Value
Type | Description |
---|---|
Game |
Move
The selected Move
Declaration
public ExtendedMove Move { get; set; }
Property Value
Type | Description |
---|---|
ExtendedMove |
MoveIndex
Index of selected move in Moves
Declaration
public int MoveIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Position
Position object corresponding to the situation before the selected move has been played
Declaration
public Position Position { get; set; }
Property Value
Type | Description |
---|---|
Position |
ScoresheetId
Id of the scoresheet, where the move was selected (needed in multiboard scenarios)
Declaration
public string ScoresheetId { get; set; }
Property Value
Type | Description |
---|---|
System.String |