This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
DamesEtCo/includes/types.hpp

10 lines
189 B
C++
Raw Permalink Normal View History

2024-01-07 12:44:33 +01:00
#pragma once
#include <utility>
using Position = std::pair<const int, const int>;
2024-01-07 12:45:13 +01:00
using PositionMutable = std::pair<int, int>;
2024-01-07 12:56:41 +01:00
// Renvoie une position invalide
Position emptyPosition();