C++ files I have played around with.
https://www.udemy.com/share/101WQMBEUceFxVTXo=/
- able to assign name to character
- able to move character on map
unalbe to check map bounds ( you can move to infinity )foe encounter not implementedbattle not implementedHP management not implemented
- passing arguments to function paramaters
- when passing a variable, it passes it by value. This makes a copy of the variable and performs on that copy.
- when passing a vector/list, it is passed by reference. This means any change made to a vector/list will be permanent after a function execution.