I am trying to program a developer console for a game I'm working on. To test if it worked, I created a test that is a static function for a command. However, when I tried to use a function in a specific instance of a class that was non-static, my compiler threw errors.
Console::help is static. I then attempted to remove the static keyword from its definition as a test as there is another part of my code that absolutely can't be static.