X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2Fgame.h;h=83d2f51b6965b6233bad0e94e69388ce5d6a1a3f;hb=88e62c4ff5f422b930c38ab643121e5f8607d889;hp=bf868978a7b6900614b3e5b5c273392f029fb38c;hpb=ad9f1fb6bdfc51df61a7fb52d607ca0c0bceca4c;p=physics.git diff --git a/src/game.h b/src/game.h index bf86897..83d2f51 100644 --- a/src/game.h +++ b/src/game.h @@ -1,12 +1,34 @@ +/* + * Copyright (C) 2008 Patrik Gornicz, Gornicz_P (at) hotmail (dot) com. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef GAME_H #define GAME_H + /// ***** Header Methods ***** -void gameInit(); -void gameClean(); -void gameInput(); -void gameUpdate(float); -void gameDraw(); +namespace game +{ + void init(); + void clean(); + + void input(); + void update(float); + void draw(); +} #endif // GAME_H