Add different type of inventory item (armor)

This commit is contained in:
2024-09-03 23:37:49 -07:00
parent 19d3c40fef
commit 9a24ebf058
12 changed files with 59 additions and 10 deletions

View File

@@ -54,7 +54,7 @@ public class GameRepo : IGameRepo
_isInventoryScreenOpened = new AutoProp<bool>(false);
_isPaused = new AutoProp<bool>(false);
_playerGlobalPosition = new AutoProp<Vector3>(Vector3.Zero);
_equippedWeapon = new Weapon() { InventoryInfo = WeaponInfo.Default };
_equippedWeapon = new Weapon();
}
public void Pause()