aboutsummaryrefslogtreecommitdiff
path: root/games/devtest/mods/testnodes/textures/testnodes_liquidsource_r3.png
blob: 0f46e291e81e7da98816774f0d0994cb99afae91 (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 5f 49 44 41 54 78 01 63 08 6e 67 d8 8c 8c 53 97 a1 62 42 f2 83 d4 80 39 47 fc e0 78 a..._IDATx.c.ng...S..bB....9G..x
0040 f2 fa 70 18 c6 6e 00 16 1b 91 35 a1 18 86 e9 22 bc 06 60 da 48 7f 03 08 7b 81 b4 40 24 3b 1a a9 ..p..n....5...."..`.H...{..@$;..
0060 66 00 ba f7 c8 4b 07 e9 cb 98 41 18 c4 27 2b 1d 60 18 c8 40 6a d2 0d ef 60 06 89 93 69 00 e5 2e f....K....A..'+.`..@j...`...i...
0080 c0 94 07 00 97 dd cb ef 90 b8 b5 a4 00 00 00 00 49 45 4e 44 ae 42 60 82 ................IEND.B`.
tware 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 <string> #include <vector> #include "lua_api/l_base.h" struct CraftReplacements; class ModApiCraft : public ModApiBase { private: static int l_register_craft(lua_State *L); static int l_get_craft_recipe(lua_State *L); static int l_get_all_craft_recipes(lua_State *L); static int l_get_craft_result(lua_State *L); static int l_clear_craft(lua_State *L); static bool readCraftReplacements(lua_State *L, int index, CraftReplacements &replacements); static bool readCraftRecipeShapeless(lua_State *L, int index, std::vector<std::string> &recipe); static bool readCraftRecipeShaped(lua_State *L, int index, int &width, std::vector<std::string> &recipe); static struct EnumString es_CraftMethod[]; public: static void Initialize(lua_State *L, int top); };