mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
Clang format: fix LINT on old PR which doesn't have LINT enabled
This commit is contained in:
parent
0a8834608d
commit
0419552c92
@ -17,14 +17,11 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "script/common/c_converter.h"
|
|
||||||
#include "l_localplayer.h"
|
#include "l_localplayer.h"
|
||||||
#include "l_internal.h"
|
#include "l_internal.h"
|
||||||
|
#include "script/common/c_converter.h"
|
||||||
|
|
||||||
LuaLocalPlayer::LuaLocalPlayer(LocalPlayer *m)
|
LuaLocalPlayer::LuaLocalPlayer(LocalPlayer *m) { m_localplayer = m; }
|
||||||
{
|
|
||||||
m_localplayer = m;
|
|
||||||
}
|
|
||||||
|
|
||||||
void LuaLocalPlayer::create(lua_State *L, LocalPlayer *m)
|
void LuaLocalPlayer::create(lua_State *L, LocalPlayer *m)
|
||||||
{
|
{
|
||||||
@ -335,10 +332,7 @@ LuaLocalPlayer *LuaLocalPlayer::checkobject(lua_State *L, int narg)
|
|||||||
return *(LuaLocalPlayer **)ud;
|
return *(LuaLocalPlayer **)ud;
|
||||||
}
|
}
|
||||||
|
|
||||||
LocalPlayer *LuaLocalPlayer::getobject(LuaLocalPlayer *ref)
|
LocalPlayer *LuaLocalPlayer::getobject(LuaLocalPlayer *ref) { return ref->m_localplayer; }
|
||||||
{
|
|
||||||
return ref->m_localplayer;
|
|
||||||
}
|
|
||||||
|
|
||||||
LocalPlayer *LuaLocalPlayer::getobject(lua_State *L, int narg)
|
LocalPlayer *LuaLocalPlayer::getobject(lua_State *L, int narg)
|
||||||
{
|
{
|
||||||
@ -382,10 +376,8 @@ void LuaLocalPlayer::Register(lua_State *L)
|
|||||||
}
|
}
|
||||||
|
|
||||||
const char LuaLocalPlayer::className[] = "LocalPlayer";
|
const char LuaLocalPlayer::className[] = "LocalPlayer";
|
||||||
const luaL_reg LuaLocalPlayer::methods[] = {
|
const luaL_reg LuaLocalPlayer::methods[] = {luamethod(LuaLocalPlayer, get_velocity),
|
||||||
luamethod(LuaLocalPlayer, get_velocity),
|
luamethod(LuaLocalPlayer, get_hp), luamethod(LuaLocalPlayer, get_name),
|
||||||
luamethod(LuaLocalPlayer, get_hp),
|
|
||||||
luamethod(LuaLocalPlayer, get_name),
|
|
||||||
luamethod(LuaLocalPlayer, is_teleported),
|
luamethod(LuaLocalPlayer, is_teleported),
|
||||||
luamethod(LuaLocalPlayer, is_attached),
|
luamethod(LuaLocalPlayer, is_attached),
|
||||||
luamethod(LuaLocalPlayer, is_touching_ground),
|
luamethod(LuaLocalPlayer, is_touching_ground),
|
||||||
@ -412,5 +404,4 @@ const luaL_reg LuaLocalPlayer::methods[] = {
|
|||||||
luamethod(LuaLocalPlayer, get_movement_speed),
|
luamethod(LuaLocalPlayer, get_movement_speed),
|
||||||
luamethod(LuaLocalPlayer, get_movement),
|
luamethod(LuaLocalPlayer, get_movement),
|
||||||
|
|
||||||
{0, 0}
|
{0, 0}};
|
||||||
};
|
|
||||||
|
@ -22,12 +22,11 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||||||
|
|
||||||
#include "l_base.h"
|
#include "l_base.h"
|
||||||
|
|
||||||
|
|
||||||
class LocalPlayer;
|
class LocalPlayer;
|
||||||
|
|
||||||
class LuaLocalPlayer : public ModApiBase {
|
class LuaLocalPlayer : public ModApiBase
|
||||||
|
{
|
||||||
private:
|
private:
|
||||||
|
|
||||||
static const char className[];
|
static const char className[];
|
||||||
static const luaL_Reg methods[];
|
static const luaL_Reg methods[];
|
||||||
|
|
||||||
@ -91,5 +90,4 @@ public:
|
|||||||
static void Register(lua_State *L);
|
static void Register(lua_State *L);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#endif // MINETEST_L_LOCALPLAYER_H
|
#endif // MINETEST_L_LOCALPLAYER_H
|
||||||
|
@ -38,10 +38,7 @@ struct ItemMesh
|
|||||||
*/
|
*/
|
||||||
std::vector<std::pair<bool, video::SColor>> buffer_colors;
|
std::vector<std::pair<bool, video::SColor>> buffer_colors;
|
||||||
|
|
||||||
ItemMesh():
|
ItemMesh() : mesh(NULL), buffer_colors() {}
|
||||||
mesh(NULL),
|
|
||||||
buffer_colors()
|
|
||||||
{}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user