[jasper/core] Cleanup for consistency, fix name

This commit is contained in:
Gary Talent 2024-09-19 22:57:09 -05:00
parent bab3b40ddb
commit d8f419a756

View File

@ -11,9 +11,9 @@
namespace jasper::core { namespace jasper::core {
struct AnimPage { struct AnimPage {
constexpr static auto TypeName = "net.drinkingtea.nostalgia.core.AnimPage"; static constexpr auto TypeName = "net.drinkingtea.jasper.core.AnimPage";
constexpr static auto TypeVersion = 1; static constexpr auto TypeVersion = 1;
constexpr static auto Preloadable = true; static constexpr auto Preloadable = true;
ox::String tilesheetPath; ox::String tilesheetPath;
ox::String subsheetPath; ox::String subsheetPath;
}; };