[nostalgia/core] Cleanup

This commit is contained in:
2023-05-16 21:20:07 -05:00
parent 2c7e134606
commit f63fe6c995
8 changed files with 81 additions and 48 deletions
+29
View File
@@ -0,0 +1,29 @@
/*
* Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved.
*/
#pragma once
#include <ox/fs/fs.hpp>
#include <ox/model/desctypes.hpp>
#include <ox/std/buffer.hpp>
#include <keel/context.hpp>
#include <nostalgia/geo/size.hpp>
#include <nostalgia/core/context.hpp>
namespace nostalgia::core::gba {
class Context: public core::Context {
public:
bool running = true;
Context() noexcept = default;
Context(Context &other) noexcept = delete;
Context(const Context &other) noexcept = delete;
Context(const Context &&other) noexcept = delete;
};
}