You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
337 B
22 lines
337 B
/**
|
|
*\file Island.h
|
|
*\brief Island's model
|
|
*\author Jacques Thomas
|
|
*\date 29/11/2021
|
|
*/
|
|
|
|
#ifndef ISLAND_H
|
|
#define ISLAND_H
|
|
|
|
/**
|
|
*\struct Island
|
|
*\brief Island representation
|
|
* Island Coordinate on the game board
|
|
*/
|
|
typedef struct
|
|
{
|
|
int x;///< Coordinate : absciss
|
|
int y;///< Coordinate : ordinate
|
|
} Island;
|
|
|
|
#endif |