mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-22 17:18:39 +00:00
Clang format: fix LINT on old PR which doesn't have LINT enabled
This commit is contained in:
parent
0a8834608d
commit
0419552c92
3 changed files with 16 additions and 30 deletions
|
@ -30,18 +30,15 @@ struct TileSpec;
|
|||
|
||||
struct ItemMesh
|
||||
{
|
||||
scene::IMesh* mesh;
|
||||
scene::IMesh *mesh;
|
||||
/*!
|
||||
* Stores the color of each mesh buffer.
|
||||
* If the boolean is true, the color is fixed, else
|
||||
* palettes can modify it.
|
||||
*/
|
||||
std::vector<std::pair<bool, video::SColor> > buffer_colors;
|
||||
std::vector<std::pair<bool, video::SColor>> buffer_colors;
|
||||
|
||||
ItemMesh():
|
||||
mesh(NULL),
|
||||
buffer_colors()
|
||||
{}
|
||||
ItemMesh() : mesh(NULL), buffer_colors() {}
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue