I have a problem with accessing a function from a class with the class object in my main function. I am just trying to make the object for the class and use that ob
main
Did you remember to include the closing brace in main?
#include #include "Attack.h" using namespace std; int main() { Attack attackObj; attackObj.printShiz(); }