Skip to content
Snippets Groups Projects
Commit f96ba925 authored by llebasca's avatar llebasca
Browse files

DS.h with documentation

parent 80fdf057
No related branches found
No related tags found
4 merge requests!8Modele,!7Modele,!6Modele,!5Modele Version 1
......@@ -2,12 +2,28 @@
// Created by Lucile on 18/02/2021.
*/
/*!
* \file DS.h
* \brief Header DS
* \authors Lucile
* \version 1
* \date 25/02/2021
*
* DS structure definiton.
*
*/
#ifndef INSAGAME_DS_H
#define INSAGAME_DS_H
/*!
* \struct DS
* \brief DS structure
*/
struct DS {
int door;
char * image_DS;
int door; /**< Integer representing the door number i.e. the DS location. */
char * image_DS; /**< Source image of the DS. */
};
#endif /*INSAGAME_DS_H*/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment