README: mention SDL2 backend
[rofl0r-concol.git] / tbconsole.h
blob1d253d2b532a2780fa02a565081f8c08e2ddb62f
1 #ifndef TBCONSOLE_H
2 #define TBCONSOLE_H
4 #include "console_sel.h"
6 #if CONSOLE_BACKEND == TERMBOX_CONSOLE
7 #pragma RcB2 DEP "tbconsole.c"
8 #pragma RcB2 LINK "-L ../termbox -ltermbox"
9 #endif
11 typedef struct TbConsole {
12 int fgcolor;
13 int bgcolor;
14 } TbConsole;
16 #endif