First commit that disconnects this game from the game framework so it can be its own thing.

This commit is contained in:
Zed A. Shaw 2026-03-29 11:02:02 -04:00
parent 8073997eb3
commit db60f75bd9
29 changed files with 37 additions and 36 deletions

View file

@ -201,7 +201,7 @@ void WorldBuilder::configure_starting_items(DinkyECS::World &world) {
auto& player = world.get_the<Player>();
auto &inventory = world.get<inventory::Model>(player.entity);
auto healing = System::spawn_item(world, "POTION_HEALING_SMALL");
auto healing = System::spawn_item(world, "REPAIR_KIT");
inventory.add("pocket_l", healing);
world.make_constant(healing);
}