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.
11 lines
161 B
C++
11 lines
161 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
struct start_size_t {
|
|
uint8_t const * const start;
|
|
uint32_t size;
|
|
};
|
|
|
|
typedef start_size_t const * const start_size_ptr_t;
|