Files
nova-engine/engine/include/nova/core/debug.hpp

22 lines
301 B
C++

/**
* 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;
};