aboutsummaryrefslogtreecommitdiff
path: root/games/minimal/mods/default/textures/default_furnace_front.png
blob: 4da398c0a9c8fb2548d3351d92c836c2f6edbc11 (plain)
ofshex dumpascii
0000 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 00 10 00 00 00 10 08 03 00 00 00 28 2d 0f .PNG........IHDR.............(-.
0020 53 00 00 00 0f 50 4c 54 45 33 33 33 57 57 57 6d 6d 6d 80 80 80 95 95 95 84 59 a5 fc 00 00 00 4b S....PLTE333WWWmmm.......Y.....K
0040 49 44 41 54 78 da 65 8d 41 0a 00 31 08 c4 c6 4c ff ff e6 c5 81 22 76 73 11 23 18 9d 07 39 00 38 IDATx.e.A..1...L....."vs.#...9.8
0060 08 a8 01 ab 77 5d 0e c8 94 46 18 b1 85 85 6b 12 2d 0c b7 91 29 e0 56 73 93 ed 1a 68 b1 b2 6e b1 ....w]...F....k.-...).Vs...h..n.
0080 2b 7f b1 b2 f9 11 20 18 d5 c3 07 15 45 01 ed 68 79 d8 4a 00 00 00 00 49 45 4e 44 ae 42 60 82 +...........E..hy.J....IEND.B`.
' href='#n75'>75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
/*
Minetest
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>

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.
*/

#pragma once

#include <set>
#include <string>
#include <vector>
#include "exceptions.h"

#ifdef _WIN32 // WINDOWS
#define DIR_DELIM "\\"
#define DIR_DELIM_CHAR '\\'
#define FILESYS_CASE_INSENSITIVE true
#define PATH_DELIM ";"
#else // POSIX
#define DIR_DELIM "/"
#define DIR_DELIM_CHAR '/'