[jasper/core] Cleanup
All checks were successful
Build / build (push) Successful in 1m30s

This commit is contained in:
Gary Talent 2025-05-15 21:52:29 -05:00
parent 67108e58de
commit 9123a328ac
2 changed files with 2 additions and 30 deletions

View File

@ -1,27 +0,0 @@
/*
* Copyright 2023 - 2025 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/
#pragma once
#include <ox/std/string.hpp>
#include <ox/std/vector.hpp>
#include <ox/model/def.hpp>
namespace jasper::core {
struct AnimPage {
static constexpr auto TypeName = "net.drinkingtea.jasper.core.AnimPage";
static constexpr auto TypeVersion = 1;
static constexpr auto Preloadable = true;
ox::String tilesheetPath;
ox::String subsheetPath;
};
oxModelBegin(AnimPage)
oxModelFieldRename(tilesheetPath, tilesheet_path)
oxModelFieldRename(subsheetPath, subsheet_path)
oxModelEnd()
}

View File

@ -8,7 +8,7 @@
namespace jasper::core {
class CoreModule: public keel::Module {
static class: public keel::Module {
private:
public:
@ -36,9 +36,8 @@ class CoreModule: public keel::Module {
};
}
};
} mod;
static const CoreModule mod;
keel::Module const*keelModule() noexcept {
return &mod;
}