pokemon/start_size.hpp
Zack Buhman 60c346406c basic sign rendering
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.
2023-07-31 18:08:59 +00:00

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;