Break this up like a rust/java project

This commit is contained in:
jordan4ibanez 2024-04-18 04:52:47 -04:00
parent 9eb79fc574
commit 5de3eebc8c
6 changed files with 10 additions and 14 deletions

View File

@ -1,4 +0,0 @@
namespace player {
utility.loadFiles(["inventory"])
}

View File

@ -1,4 +0,0 @@
name = player
description = Forgotten lands player library.
depends = utility, types, formspec, anti_complain
optional_depends =

View File

@ -0,0 +1,4 @@
name = player_inventory
description = Forgotten lands player inventory library.
depends = utility, types, formspec, anti_complain
optional_depends =

View File

@ -1,16 +1,12 @@
namespace player {
namespace playerModel {
type AnimationStation = animationStation.AnimationStation;
minetest.register_on_joinplayer((player: ObjectRef) => {
player.set_properties({
})
});
}

View File

@ -0,0 +1,4 @@
name = player_model
description = Forgotten lands player model library.
depends = utility, types, anti_complain
optional_depends =