17 lines
381 B
C++
17 lines
381 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#include "coordinates.hpp"
|
|
|
|
void draw_number_right_align(const uint32_t base_pattern,
|
|
const screen_cell_t& pos,
|
|
const int32_t n,
|
|
const int32_t width,
|
|
const uint8_t fill);
|
|
|
|
void draw_number_left_align(const uint32_t base_pattern,
|
|
const screen_cell_t& pos,
|
|
const int32_t n,
|
|
const int32_t width);
|