0
How can i made armour for game in c#
i need help to crate script about shield in game
1 Answer
+ 1
Make an Armour class with properties like Name, Description, HP, MaxHP, Weight, etc.
Give your Character class a List<Armour> with a name like _equiptArmour.
Cycle through the _equiptArmour to calculate the Character's stats while wearing or carrying different types of Armour.