changed naming scheme

This commit is contained in:
2024-07-07 20:10:31 -04:00
parent d85f375fbe
commit 6f998d8523
7 changed files with 32 additions and 32 deletions

View File

@ -15,9 +15,9 @@ public:
void render() override;
void clear() override;
void print_char(const position &pos,
const char ch, const int attr) override;
const char ch, const int attrs) override;
void print_str(const position &pos,
const std::string &str, const int attr) override;
const std::string &str, const int attrs) override;
};
#endif