Minetest 5.9.0-dev
 
Loading...
Searching...
No Matches
l_particles_local.h
Go to the documentation of this file.
1/*
2Minetest
3Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4Copyright (C) 2017 red-001 <red-001@outlook.ie>
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU Lesser General Public License as published by
8the Free Software Foundation; either version 2.1 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU Lesser General Public License for more details.
15
16You should have received a copy of the GNU Lesser General Public License along
17with this program; if not, write to the Free Software Foundation, Inc.,
1851 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19*/
20
21#pragma once
22
23#include "lua_api/l_base.h"
24
26{
27private:
28 static int l_add_particle(lua_State *L);
29 static int l_add_particlespawner(lua_State *L);
30 static int l_delete_particlespawner(lua_State *L);
31
32public:
33 static void Initialize(lua_State *L, int top);
34};
Definition: l_base.h:43
Definition: l_particles_local.h:26
static int l_add_particle(lua_State *L)
Definition: l_particles_local.cpp:31
static int l_add_particlespawner(lua_State *L)
Definition: l_particles_local.cpp:103
static int l_delete_particlespawner(lua_State *L)
Definition: l_particles_local.cpp:207
static void Initialize(lua_State *L, int top)
Definition: l_particles_local.cpp:220