diff --git a/include/tilecolor.h b/include/tilecolor.h deleted file mode 100644 index 5732740..0000000 --- a/include/tilecolor.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef TILECOLOR_H -#define TILECOLOR_H - -#include "terminal.h" -#include - -class TileColor -{ -public: - Terminal::Color foreground; - Terminal::Color background; - - TileColor( Terminal::Color _foreground=Terminal::Color::FG_DEFAULT, - Terminal::Color _background=Terminal::Color::BG_DEFAULT ) - : foreground(_foreground), background(_background) - {} - - friend std::ostream& operator<<( std::ostream& os, const TileColor& c ); -}; - -#endif \ No newline at end of file diff --git a/src/tilecolor.cpp b/src/tilecolor.cpp deleted file mode 100644 index a3531c0..0000000 --- a/src/tilecolor.cpp +++ /dev/null @@ -1,6 +0,0 @@ -#include "tilecolor.h" - -std::ostream& operator<<( std::ostream& os, const TileColor& c ) -{ - return os << c.foreground << c.background; -} \ No newline at end of file