Initial commit

This commit is contained in:
hertog 2025-03-13 08:40:48 +00:00
commit 65227bf3a5
12416 changed files with 6001067 additions and 0 deletions

10
justfile Normal file
View file

@ -0,0 +1,10 @@
build:
cd engine/ && scons target=editor symbols=yes optimization=debug dev_build=yes linker=mold use_llvm=yes compiledb=yes
run: build
engine/bin/godot.linuxbsd.editor.dev.x86_64.llvm --editor --path project
initialize-template projectname:
sed -i -e "s/PROJECT/{{projectname}}/g" ./engine/modules/PROJECT/register_types.h ./engine/modules/PROJECT/register_types.cpp ./project/project.godot
mv ./engine/modules/PROJECT ./engine/modules/{{projectname}}