Skip to content
Permalink
7c65d5344b
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
21 lines (16 sloc) 446 Bytes
#ifndef TILECOLOR_H
#define TILECOLOR_H
#include "terminal.h"
#include <iostream>
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