1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-01 17:38:41 +00:00
luanti/src/script/cpp_api/s_client_common.h

16 lines
444 B
C++

// Luanti
// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
// Copyright (C) 2017 nerzhul, Loic Blot <loic.blot@unix-experience.fr>
// Copyright (C) 2025 grorp
#pragma once
#include "cpp_api/s_base.h"
#include "util/string.h"
class ScriptApiClientCommon : virtual public ScriptApiBase
{
public:
bool on_formspec_input(const std::string &formname, const StringMap &fields);
};