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

@@ -114,8 +114,8 @@ class WindowContext implements TermWriteable {
return writer.getTextColor();
}
public function setTextColor(colour:Color) {
writer.setTextColor(colour);
public function setTextColor(color:Color) {
writer.setTextColor(color);
}
public function getBackgroundColor():Color {