Add basic project setup with engine and editor subdirectories

This commit is contained in:
2025-02-04 10:28:18 +10:00
parent f9c7a029a6
commit f6bcee45bb
10 changed files with 188 additions and 44 deletions

13
engine/src/test.cpp Normal file
View File

@@ -0,0 +1,13 @@
/**
* Copyright (c) 2025, Jayden Grubb <contact@jaydengrubb.com>
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <nova/test.h>
#include <cstdio>
void func() {
std::printf("Hello, world!\n");
}