mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 10:03:45 +01:00
LINT fix since cloud API merge
This commit is contained in:
parent
dd591119a3
commit
9a9ae7d65c
@ -107,10 +107,7 @@ public:
|
||||
m_cloud_params = cloud_params;
|
||||
}
|
||||
|
||||
const CloudParams &getCloudParams() const
|
||||
{
|
||||
return m_cloud_params;
|
||||
}
|
||||
const CloudParams &getCloudParams() const { return m_cloud_params; }
|
||||
|
||||
bool checkModified() const { return m_dirty || inventory.checkModified(); }
|
||||
|
||||
|
@ -65,8 +65,8 @@ public:
|
||||
// sound. If name=="", call should be ignored without error.
|
||||
virtual int playSound(const std::string &name, bool loop, float volume,
|
||||
float fade = 0) = 0;
|
||||
virtual int playSoundAt(const std::string &name, bool loop, float volume,
|
||||
v3f pos) = 0;
|
||||
virtual int playSoundAt(
|
||||
const std::string &name, bool loop, float volume, v3f pos) = 0;
|
||||
virtual void stopSound(int sound) = 0;
|
||||
virtual bool soundExists(int sound) = 0;
|
||||
virtual void updateSoundPosition(int sound, v3f pos) = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user