From what my teacher said the only globals that are safe are primitives like, int, double, bool, string, etc. Like others have said here when it comes to objects the order they are destructed in as globals is undefined and can cause crashes because of it.
So:
namespace menu
{
void loadFiles();
void menu(sf::RenderWindow &window);
void main(sf::RenderWindow &window);
void options();
}
Should/Could be:
class menu
{
public:
void loadFiles();
void menu(sf::RenderWindow &window);
void main(sf::RenderWindow &window);
void options();
}
I think his post was missing a lot of things he intended to put in there. I assume those code samples were meant to look more like this:
namespace menu
{
sf::Font evilGlobalFont;
sf::Text evilGlobalText;
void loadFiles();
void menu(sf::RenderWindow &window);
void main(sf::RenderWindow &window);
void options();
}
class menu
{
public:
void loadFiles();
void menu(sf::RenderWindow &window);
void main(sf::RenderWindow &window);
void options();
private:
sf::Font goodEncapsulatedFont;
sf::Text goodEncapsulatedText;
}