mirror of
https://github.com/minetest/minetest.git
synced 2024-12-03 21:13:45 +01:00
20 lines
412 B
C++
20 lines
412 B
C++
// Luanti
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
// Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
#pragma once
|
|
|
|
#include <iostream>
|
|
|
|
class NodeMetadataList;
|
|
class NodeTimerList;
|
|
class IItemDefManager;
|
|
|
|
/*
|
|
Legacy nodemeta definitions
|
|
*/
|
|
|
|
void content_nodemeta_deserialize_legacy(std::istream &is,
|
|
NodeMetadataList *meta, NodeTimerList *timers,
|
|
IItemDefManager *item_def_mgr);
|