Subversion Repositories sssnakesss

Rev

Rev 1 | Rev 3 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#ifndef SSSNAKESSS_H
#define SSSNAKESSS_H

class SSSNAKESSS
{
    public:
        SSSNAKESSS();
        ~SSSNAKESSS();
       
        bool init();
        bool initSDL();
        bool initOpenGL();
        void initData();
       
        void run();
        void checkEvents();
        void update();
        void draw();
       
        void end();
   
    private:
        bool running;
};

#endif // SSSNAKESSS_H