Files
pvs/semestralka1/background_dark_inverted.h
2025-11-13 23:35:00 +01:00

18 lines
777 B
C

// background_dark_inverted.h
#pragma once
// embedded ASCII art background
static const char *BACKGROUND_DARK_INVERTED[] = {
"##################################################",
"# #",
"# example ASCII background line 1 #",
"# replace this content with your real art #",
"# #",
"#================================================#",
"# #",
"# #",
"##################################################"
};
static const int BACKGROUND_DARK_INVERTED_LINES =
sizeof(BACKGROUND_DARK_INVERTED) / sizeof(BACKGROUND_DARK_INVERTED[0]);