All defined signs are now interactable, but the sign message is not dismissable yet, and only the first paragraph is displayed in multi-paragraph signs.
13 lines
249 B
C++
13 lines
249 B
C++
#pragma once
|
|
|
|
#include "start_size.hpp"
|
|
|
|
struct dialog_t
|
|
{
|
|
static constexpr screen_t top_left = { 0, 12};
|
|
static constexpr screen_t bottom_right = {19, 17};
|
|
|
|
static void draw(const uint32_t base_pattern,
|
|
const start_size_t& text);
|
|
};
|