我有一个全局分配作为指向我的窗口的指针,如下所示:
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
这里做错了什么?