How to call on a function found on another file?
You can use header files. Good practice. You can create a file called player.h declare all functions that are need by other cpp files in that header file and include it when needed. player.h #ifndef PLAYER_H // To make sure you don’t declare the function more than once by including the header multiple times. #define … Read more