8 lines
213 B
C++
8 lines
213 B
C++
// src/render/background.h
|
|
|
|
#pragma once
|
|
constexpr int VIEW_WIDTH = 90;
|
|
|
|
// Draws the ASCII art background with optional message
|
|
void draw_mask(const char *unused_filename, int shift, const char *text = nullptr);
|