pokemon/number.hpp
Zack Buhman abe7bde678 graphic: display nearly-complete stats page #1
Type is not displayed because the type names have no
parsers/generators yet.
2023-08-04 03:28:17 +00:00

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);