Newbie to C++, so this is obvious...
Pasted the simple shapes example into a project that is already configured for SFML 1.6.
The lines containing the predefined colours, such as
App.Draw(sf::Shape::Rectangle(350, 200, 600, 350, sf::Color::Green));
Produced the compiler message
Pang.obj : error LNK2001: unresolved external symbol "public: static class sf::Color const sf::Color::Green" (?Green@Color@sf@@2V12@B)
but when I tried
App.Draw(sf::Shape::Rectangle(350, 200, 600, 350, sf::Color(0,255,0)));
a green rectangle appears.
How do I use the predefined colours, and how do I define my own?