aboutsummaryrefslogtreecommitdiff
path: root/data/mods/default/textures/apple.png
blob: 9593f28f6068b7d932036f42b9eede227e1c1616 (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 06 00 00 00 1f f3 ff .PNG........IHDR................
0020 61 00 00 00 01 73 52 47 42 00 ae ce 1c e9 00 00 00 04 67 41 4d 41 00 00 b1 8f 0b fc 61 05 00 00 a....sRGB.........gAMA......a...
0040 00 09 70 48 59 73 00 00 0e c3 00 00 0e c3 01 c7 6f a8 64 00 00 00 19 74 45 58 74 53 6f 66 74 77 ..pHYs..........o.d....tEXtSoftw
0060 61 72 65 00 50 61 69 6e 74 2e 4e 45 54 20 76 33 2e 35 2e 38 37 3b 80 5d 00 00 00 3b 49 44 41 54 are.Paint.NET.v3.5.87;.]...;IDAT
0080 38 4f 63 60 18 05 c3 39 04 d4 ea 19 fe 23 61 46 b2 fc 0a 32 80 2c 8d 50 4d 20 cd c8 98 24 b3 c0 8Oc`...9.....#aF...2.,.PM....$..
00a0 1a ff f3 40 30 92 41 44 1b 02 d7 8c 66 c8 48 32 00 e4 57 a2 62 01 00 58 60 3f d7 0e 36 5b 3f 00 ...@0.AD....f.H2..W.b..X`?..6[?.
00c0 00 00 00 49 45 4e 44 ae 42 60 82 ...IEND.B`.
/a> 67 68 69 70 71 72 73 74 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 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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
/*
Minetest
Copyright (C) 2010-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.
*/

#ifndef UTIL_THREAD_HEADER
#define UTIL_THREAD_HEADER

#include "../irrlichttypes.h"
#include "../threading/thread.h"
#include "../threading/mutex.h"
#include "../threading/mutex_auto_lock.h"
#include "porting.h"