Skip to content

Commit

Permalink
style: make tui better
Browse files Browse the repository at this point in the history
  • Loading branch information
realstealthninja committed Jun 29, 2024
1 parent c097eab commit 9ce23e2
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,23 @@
#include "render.h"
#include "video.h"

std::string menu = "############################\n"
"# #\n"
"# 0.Image #\n"
"# 1.Video #\n"
"# #\n"
"############################\n"
std::string menu = "┏━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n"
"┃ ┃\n"
"┃ 0.Image ┃\n"
"┃ 1.Video ┃\n"
"┃ 3.3D ┃\n"
"┃ ┃\n"
"┗━━━━━━━━━━━━━━━━━━━━━━━━━━┛\n"
"Input?: ";

std::string encoding = "############################\n"
"# #\n"
"# 0.GRAY SCALE #\n"
"# 1.RGB #\n"
"# 2.SHORT GRAY #\n"
"# 3.REVERSE GRAY #\n"
"# #\n"
"############################\n"
std::string encoding = "┏━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n"
" \n"
" 0. GRAY SCALE \n"
" 1. RGB \n"
" 2. SHORT GRAY \n"
" 3. REVERSE GRAY \n"
" \n"
"┗━━━━━━━━━━━━━━━━━━━━━━━━━━┛\n"
"Input?: ";


Expand Down

0 comments on commit 9ce23e2

Please sign in to comment.