From fc4e058b6cac97737638c2951a0dbe787b9a7c35 Mon Sep 17 00:00:00 2001 From: "C. J. Howard" Date: Sun, 24 Jan 2021 23:45:51 +0800 Subject: [PATCH] Add cart.hpp --- src/game/cartography/cart.hpp | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/game/cartography/cart.hpp diff --git a/src/game/cartography/cart.hpp b/src/game/cartography/cart.hpp new file mode 100644 index 0000000..d789e93 --- /dev/null +++ b/src/game/cartography/cart.hpp @@ -0,0 +1,28 @@ +/* + * Copyright (C) 2021 Christopher J. Howard + * + * This file is part of Antkeeper source code. + * + * Antkeeper source code 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 3 of the License, or + * (at your option) any later version. + * + * Antkeeper source code 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 Antkeeper source code. If not, see . + */ + +#ifndef ANTKEEPER_CART_HPP +#define ANTKEEPER_CART_HPP + +/// Cartography-related functions +namespace cart {} + +#include "relief-map.hpp" + +#endif // ANTKEEPER_CART_HPP