create entrypoint, add IWYU pragmas

This commit is contained in:
lauchmelder 2025-01-03 11:26:53 +01:00
parent cd9f7a8bf6
commit 31c2b61d20
8 changed files with 59 additions and 17 deletions

View file

@ -1,5 +1,13 @@
#include "Test.hpp"
#include <memory>
#include <quark.hpp>
int main(int argc, char** argv) {
quark::Print();
class Sandbox :
public qk::Application
{
public:
};
std::unique_ptr<qk::Application> qk::CreateApplication() {
return std::make_unique<Sandbox>();
}