Skip to content

tomosnelli/learning_cpp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

175 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cpp_scratch

C++ files I have played around with.


The course that I am following

https://www.udemy.com/share/101WQMBEUceFxVTXo=/


Current Status on game.cpp

  • 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 implemented
  • battle not implemented
  • HP management not implemented

NOTES

  • 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.

About

gitrepo to save my learning progress of C++

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors