Skip to content

Commit

Permalink
Release notes for v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
FLAK-ZOSO committed Jul 12, 2024
1 parent 2c9d769 commit 64639ac
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,3 +204,19 @@ Coordinates operator-(const Coordinates&) const;
Coordinates operator+=(const Coordinates&);
Coordinates operator-=(const Coordinates&);
```

## v`1.1.3`

- Added `sista::Field::rePrintPawn()`
- Added operator for scalar multiplication for `sista::Coordinates` struct

```c++
void Field::rePrintPawn(Pawn* pawn) { // Print a pawn
cursor.set(pawn->getCoordinates()); // Set the cursor to the pawn's coordinates
pawn->print(); // Print the pawn
}
```
```c++
Coordinates operator*(const unsigned short int) const;
```

0 comments on commit 64639ac

Please sign in to comment.