aboutsummaryrefslogtreecommitdiff
path: root/src/script/cpp_api/s_security.cpp
diff options
context:
space:
mode:
authorLars Hofhansl <larsh@apache.org>2016-12-31 12:40:31 -0800
committerNer'zhul <nerzhul@users.noreply.github.com>2017-01-03 08:14:58 +0100
commit7387b190213996e453d0a7447027a71615034f5e (patch)
treec0de2e3fa26dab2e55a2a020a9eec2c702a400ae /src/script/cpp_api/s_security.cpp
parent6718a95103b2a6c308da121a1340dfdcad2e069d (diff)
downloadminetest-7387b190213996e453d0a7447027a71615034f5e.tar.gz
minetest-7387b190213996e453d0a7447027a71615034f5e.tar.bz2
minetest-7387b190213996e453d0a7447027a71615034f5e.zip
Pull occlusion check out of loop, and minor code cleanups.
Diffstat (limited to 'src/script/cpp_api/s_security.cpp')
0 files changed, 0 insertions, 0 deletions
he GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #pragma once #include <set> #include <string> #include "irrlichttypes_bloated.h" class OnDemandSoundFetcher { public: virtual void fetchSounds(const std::string &name, std::set<std::string> &dst_paths, std::set<std::string> &dst_datas) = 0; }; struct SimpleSoundSpec { SimpleSoundSpec(const std::string &name = "", float gain = 1.0f,