vibecoded gb emulator

This commit is contained in:
2025-10-08 22:19:21 +02:00
parent 9a9e25e124
commit 429d704c8c
12 changed files with 781 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include "app_framework.hpp"
#include <memory>
#include <string_view>
namespace apps {
inline constexpr char kGameboyAppName[] = "Game Boy";
inline constexpr std::string_view kGameboyAppNameView = kGameboyAppName;
std::unique_ptr<IAppFactory> createGameboyAppFactory();
} // namespace apps