/*
 *
 * Copyright (C) 2008 Fontaine Clément
 *
 * 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 2 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 <http://www.gnu.org/licenses/>.
 *
 */
/*
 *
 * Fichier : camera.
 * Créé par Fontaine Clément <clement@the-sith.servhome.org>.
 * Date de création le 19/06/08.
 * Date de modification le 20/06/08.
 * Déscription : gestion de la camera.
 *
 */

#ifndef DEF_SDL_GL
#define DEF_SDL_GL

#include <stdio.h>
#include <stdlib.h>
#include <SDL/SDL.h>
#include <GL/gl.h>
#include <GL/glu.h>
#include "liste.h"

/* gestion du clavier */
void cameraClavier(const hauteur altitude, const SDL_KeyboardEvent event, int *x, int *y, int *z);

/* gestion de la camera */
void cameraRegarder(const hauteur altitude, const int x, const int y, const int z);

#endif
