Add basic project heirarchy and config

This commit is contained in:
2025-11-04 00:13:31 +10:00
parent 3031290ba0
commit 078d866c8a
22 changed files with 211 additions and 47 deletions

View File

@@ -0,0 +1,21 @@
/**
* Copyright (c) 2025, Jayden Grubb <contact@jaydengrubb.com>
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#pragma once
#include <nova/core/api.hpp>
namespace nova::core {
struct NOVA_API Debug {
static void init();
};
} // namespace nova::core
namespace nova {
using namespace core;
};