Ejemplo n.º 1
0
 public TextBox(StateSpace stateSpace)
 {
     _stateSpace = stateSpace;
     _nextLine   = stateSpace.TopLeft;
     _width      = stateSpace.BottomRight.Column - stateSpace.TopLeft.Column;
     _height     = stateSpace.BottomRight.Row - stateSpace.TopLeft.Row + 1;
 }
Ejemplo n.º 2
0
 public CountryInfo(CountryName name, StateSpace stateSpace, Continent continent)
 {
     Name       = name;
     StateSpace = stateSpace;
     Continent  = continent;
 }