[ create a new paste ] login | about

Link: http://codepad.org/opw4HeWp    [ raw code | output | fork ]

C++, pasted on Mar 22:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
LIQUID::LIQUID( bool& failed , SCREEN Screen_ ){

    if ( SDL_Init( SDL_INIT_EVERYTHING ) != -1 ) failed = false;
    else failed = true;

    Screen = Screen_;


    //LET THIS ALWAYS BE AT BOTTOM
    while(failed == false){



    }

}


Output:
1
2
Line 1: error: 'LIQUID' has not been declared
compilation terminated due to -Wfatal-errors.


Create a new paste based on this one


Comments: