view libcommon/malikania/game.hpp @ 181:fbfc2555bda5

Common: cleanup
author David Demelier <markand@malikania.fr>
date Fri, 12 Oct 2018 20:24:40 +0200
parents 4b292c20124c
children
line wrap: on
line source

/*
 * game.hpp -- basic game class
 *
 * Copyright (c) 2013-2018 David Demelier <markand@malikania.fr>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#ifndef MALIKANIA_GAME_HPP
#define MALIKANIA_GAME_HPP

/**
 * \file game.hpp
 * \brief Game description.
 */

#include <string>

namespace mlk {

/**
 * \brief Basic game description.
 */
struct game {
	std::string name;
	std::string version;
	std::string requires;
	std::string license;
	std::string author;
};

} // !mlk

#endif // !MALIKANIA_GAME_HPP