aboutsummaryrefslogtreecommitdiff
path: root/misc/minetest.exe.manifest
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2021-04-02 00:19:39 +0200
committerGitHub <noreply@github.com>2021-04-02 00:19:39 +0200
commit34888a914e1eccce8082f45089aec17d5a2815c2 (patch)
tree31a855edf48c2cdab4da0b3e113b6a33574dfa55 /misc/minetest.exe.manifest
parent3560691c0aecd89dc7f7d91ed8c4f1eaa9715eaf (diff)
downloadminetest-34888a914e1eccce8082f45089aec17d5a2815c2.tar.gz
minetest-34888a914e1eccce8082f45089aec17d5a2815c2.tar.bz2
minetest-34888a914e1eccce8082f45089aec17d5a2815c2.zip
Sort out cURL timeouts and increase default
Diffstat (limited to 'misc/minetest.exe.manifest')
0 files changed, 0 insertions, 0 deletions
'#n124'>124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
/*
Minetest
Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
Copyright (C) 2013 Kahrl <kahrl@gmx.net>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.

This program 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 Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

#ifndef ITEMDEF_HEADER
#define ITEMDEF_HEADER

#include "irrlichttypes_extrabloated.h"
#include <string>
#include <iostream>
#include <set>
#include "itemgroup.h"
#include "sound.h"
class IGameDef;
struct ToolCapabilities;

/*
	Base item definition
*/

enum ItemType
{
	ITEM_NONE,
	ITEM_NODE,
	ITEM_CRAFT,
	ITEM_TOOL,
};