[ox/preloader] Remove unused files

This commit is contained in:
2022-11-30 20:49:13 -06:00
parent 512522711a
commit e0381cd98a
5 changed files with 1 additions and 80 deletions

View File

@@ -2,32 +2,8 @@
* Copyright 2016 - 2022 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/
#include <ox/std/error.hpp>
#include "platspecs.hpp"
#include "preloader.hpp"
namespace ox {
struct TestType {
static constexpr auto TypeName = "net.drinkingtea.nostalgia.preloader.TestType";
static constexpr auto TypeVersion = 1;
uint32_t field1 = 0;
uint32_t *field2 = nullptr;
ox::Vector<uint32_t> field3;
};
oxModelBegin(TestType)
oxModelField(field1)
oxModelField(field2)
oxModelField(field3)
oxModelEnd()
constexpr ox::Error asdf() noexcept {
const TestType t;
return preload<NativePlatSpec>(&t).error;
}
//static_assert(asdf().errCode == 0);
}