Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - xDancinPoptartx

Pages: [1]
1
Window / error help (SFML 1.6)
« on: August 06, 2012, 11:23:44 pm »
I keep getting a undefined error for sf::Window
#include <SFML/window.hpp>
int main(int argc, char** argv)
{
    sf::Window App(sf::VideoMode(640, 480, 32), "Everything");
    bool running = true;
    while(running)
    {
        App.Display();
    }
    return EXIT_SUCCESS;
}
 

Pages: [1]