LeviLamina
Loading...
Searching...
No Matches
UISoundPlayer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class UISoundPlayer {
6public:
7 // virtual functions
8 // NOLINTBEGIN
9 virtual ~UISoundPlayer() = default;
10
11 virtual void play(::std::string const& name, float volume, float pitch) const;
12 // NOLINTEND
13
14public:
15 // virtual function thunks
16 // NOLINTBEGIN
17
18 // NOLINTEND
19};
Definition UISoundPlayer.h:5