mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-16 18:01:40 +00:00
Address some clang-tidy warnings
This commit is contained in:
parent
322c4a5b2b
commit
961652c2e9
17 changed files with 35 additions and 36 deletions
|
@ -70,13 +70,13 @@ struct TextureOverride
|
|||
class TextureOverrideSource
|
||||
{
|
||||
public:
|
||||
TextureOverrideSource(std::string filepath);
|
||||
TextureOverrideSource(const std::string &filepath);
|
||||
|
||||
//! Get all overrides that apply to item definitions
|
||||
std::vector<TextureOverride> getItemTextureOverrides();
|
||||
std::vector<TextureOverride> getItemTextureOverrides() const;
|
||||
|
||||
//! Get all overrides that apply to node definitions
|
||||
std::vector<TextureOverride> getNodeTileOverrides();
|
||||
std::vector<TextureOverride> getNodeTileOverrides() const;
|
||||
|
||||
private:
|
||||
std::vector<TextureOverride> m_overrides;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue