次のように、ウィンドウへのポインターとしてグローバルが割り当てられています。
globals.cpp & globals.h
もっている:
#include <SFML/Graphics.hpp>
sf::RenderWindow* window
それからmain.cpp
私は入れます:
#include <SFML/Audio.hpp>
#include <SFML/Graphics.hpp>
#include <map>
#include <string>
using namespace std;
#include "globals.h"
window(VideoMode( (800,600) , "Test") ); //line 22
これは間違っているように見えますが。このエラーが発生すると:
main.cpp(22): error C2228: left of '.VideoMode' must have class/struct/union
ここで何が間違っていますか?