1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-09-05 18:41:05 +00:00
luanti/src/script/lua_api/l_pause_menu.h

18 lines
333 B
C
Raw Normal View History

// Luanti
// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (C) 2025 grorp
#pragma once
#include "l_base.h"
class ModApiPauseMenu: public ModApiBase
{
private:
static int l_show_touchscreen_layout(lua_State *L);
static int l_is_internal_server(lua_State *L);
public:
static void Initialize(lua_State *L, int top);
};