changed how we handle colors

This commit is contained in:
2022-03-12 21:48:09 +01:00
parent aee8c0fd3c
commit 35be02dbe2
8 changed files with 37 additions and 128 deletions

View File

@@ -158,8 +158,8 @@ class TermBuffer implements TermWriteable {
return currentTextColor;
}
public function setTextColor(colour:Color) {
currentTextColor = colour;
public function setTextColor(color:Color) {
currentTextColor = color;
}
public function getBackgroundColor():Color {