Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
davesmith00000 committed Nov 8, 2023
1 parent 68ded53 commit 0aa681d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ object MapTile:
MapTile(char, RGBA.White, RGBA.Zero)

def apply(char: Tile, foreground: RGBA): MapTile =
MapTile(char, foreground, RGBA.Zero)
MapTile(char, foreground, RGBA.Zero)
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ import scalajs.js

/** `RogueTerminalEmulator` is like the `TerminalEmulator` but a little more daring and dangerous.
* Represents an mutable, packed populated terminal. It is more performant, relative to
* `TerminalEmulator`, but also requires more care since it's a mutable structure. There are no empty
* spaces in this terminal, empty tiles are filled with the Tile.Null value and RGBA.Zero colors.
* `TerminalEmulator`, but also requires more care since it's a mutable structure. There are no
* empty spaces in this terminal, empty tiles are filled with the Tile.Null value and RGBA.Zero
* colors.
*/
final class RogueTerminalEmulator(
val size: Size,
Expand Down

0 comments on commit 0aa681d

Please sign in to comment.