Rename engine to core, adjust rsdl source folder and change initial logger callback usage

This commit is contained in:
Tulpen 2023-05-22 21:24:15 +01:00
parent 48b07dd827
commit 80593dcb2b
12 changed files with 4 additions and 4 deletions

View file

@ -1,4 +1,4 @@
name "engine"
name "core"
license "LGPL-3.0"
targetType "library"
targetName "hibiscore"

View file

@ -18,7 +18,7 @@ class Engine {
previousPhysicsProcessTick = 0.00001f;
watch.start();
this.loggerCallback(LoggingSeverity.Information, "Started ge!");
this.loggerCallback(LoggingSeverity.Information, "Started Hibis!");
}
~this() {

View file

@ -4,4 +4,4 @@ dependency "bindbc-sdl" version="~>1.3.5"
targetType "library"
targetName "hibis_rsdl"
# Source paths so this can compile properly
sourcePaths "./" "../../engine"
sourcePaths "./" "../../core"

View file

@ -7,4 +7,4 @@ targetType "executable"
targetName "hibistest.exec"
dependency "hibis:engine" version="*"
dependency "hibis:rsdl" version="*"
sourcePaths "./" "../engine" "../renderer/rsdl"
sourcePaths "./" "../core" "../renderer/rsdl"