Skip to content
Snippets Groups Projects
DS.h 438 B
Newer Older
llebasca's avatar
llebasca committed
/*
// Created by Lucile on 18/02/2021.
*/

llebasca's avatar
llebasca committed
/*!
 * \file DS.h
 * \brief Header DS
 * \authors Lucile
 * \version 1
 * \date 25/02/2021
 *
 * DS structure definiton.
 *
 */

llebasca's avatar
llebasca committed
#ifndef INSAGAME_DS_H
#define INSAGAME_DS_H

llebasca's avatar
llebasca committed
/*!
 * \struct DS
 * \brief DS structure
 */

llebasca's avatar
llebasca committed
struct DS {
llebasca's avatar
llebasca committed
    int door; /**< Integer representing the door number i.e. the DS location. */
    char * image_DS; /**< Source image of the DS. */
llebasca's avatar
llebasca committed
};

#endif /*INSAGAME_DS_H*/